-
Notifications
You must be signed in to change notification settings - Fork 17
/
tsconfig.base.json
32 lines (32 loc) · 1 KB
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"compilerOptions": {
"target": "es2015",
"lib": ["es2020", "dom"],
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"baseUrl": ".",
"rootDir": ".",
"module": "esnext",
"moduleResolution": "node",
"paths": {
"@aceternity": ["libs/external/aceternity/index.ts"],
"@aceternity/*": ["libs/external/aceternity/*"],
"@magic-ui": ["libs/external/magic-ui/index.ts"],
"@magic-ui/*": ["libs/external/magic-ui/*"],
"@cuhacking/docs": ["libs/docs/index.ts"],
"@cuhacking/docs/*": ["libs/docs/*"],
"@cuhacking/shared": ["libs/shared/index.ts"],
"@cuhacking/shared/*": ["libs/shared/*"],
"@shadcn": ["libs/external/shadcn/index.ts"],
"@shadcn/*": ["libs/external/shadcn/*"],
"@website/*": ["libs/website/*"]
},
"declaration": false,
"importHelpers": true,
"sourceMap": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
},
"exclude": ["node_modules", "tmp"],
"compileOnSave": false
}