-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
33 lines (33 loc) · 1.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
33
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["esnext", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@myawesomeorg/config": ["packages/config/src/index.ts"],
"@myawesomeorg/constants": ["packages/constants/src/index.ts"],
"@myawesomeorg/db": ["packages/db/src/index.ts"],
"@myawesomeorg/file-system": ["packages/file-system/src/index.ts"],
"@myawesomeorg/frontend-astro": ["apps/frontend-astro/src/index.ts"],
"@myawesomeorg/ts-rest": ["packages/ts-rest/src/index.ts"],
"@myawesomeorg/utils": ["packages/utils/src/index.ts"],
"@stonker/stonker": ["packages/stonker/src/index.ts"]
},
"types": ["@total-typescript/ts-reset"]
},
"exclude": ["node_modules", "tmp"]
}