forked from cuhacking/2025
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
36 lines (36 loc) · 1.2 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
33
34
35
36
{
"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/*"],
"@cuhacking/db": ["libs/db/index.ts"],
"@cuhacking/db/*": ["libs/db/*"],
"@cuhacking/docs": ["libs/docs/index.ts"],
"@cuhacking/docs/*": ["libs/docs/*"],
"@cuhacking/shared": ["libs/shared/index.ts"],
"@cuhacking/shared/*": ["libs/shared/*"],
"@magic-ui": ["libs/external/magic-ui/index.ts"],
"@magic-ui/*": ["libs/external/magic-ui/*"],
"@payload-config": ["apps/cms/src/payload.config.ts"],
"@shadcn": ["libs/external/shadcn/index.ts"],
"@shadcn/*": ["libs/external/shadcn/*"],
"@website/*": ["libs/website/*"],
"@website-e2e/*": ["libs/website-e2e/*"]
},
"declaration": false,
"importHelpers": true,
"sourceMap": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
},
"exclude": ["node_modules", "tmp", "dist"],
"compileOnSave": false
}