-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
31 lines (31 loc) · 957 Bytes
/
tsconfig.base.json
File metadata and controls
31 lines (31 loc) · 957 Bytes
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "bundler",
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2022",
"module": "esnext",
"lib": ["es2022", "dom"],
"strict": true,
"useDefineForClassFields": false,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"ignoreDeprecations": "6.0",
"paths": {
"@myorg/auth": ["libs/auth/src/index.ts"],
"@myorg/counter": ["libs/counter/src/index.ts"],
"@myorg/home": ["libs/home/src/index.ts"],
"@myorg/login": ["libs/login/src/index.ts"],
"@myorg/shared": ["libs/shared/src/index.ts"],
"@myorg/shared/*": ["libs/shared/src/*"],
"@myorg/weather-forecast": ["libs/weather-forecast/src/index.ts"],
"@myorg/todo": ["libs/todo/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}