-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
39 lines (39 loc) · 1.23 KB
/
tsconfig.base.json
File metadata and controls
39 lines (39 loc) · 1.23 KB
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
37
38
39
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@monorepo-tools/website/feature-analytics": [
"libs/website/feature-analytics/src/index.ts"
],
"@monorepo-tools/website/ui-ai": ["libs/website/ui-ai/src/index.ts"],
"@monorepo-tools/website/ui-commons": [
"libs/website/ui-commons/src/index.ts"
],
"@monorepo-tools/website/ui-compare": [
"libs/website/ui-compare/src/index.ts"
],
"@monorepo-tools/website/ui-conf": ["libs/website/ui-conf/src/index.ts"],
"@monorepo-tools/website/ui-home": ["libs/website/ui-home/src/index.ts"],
"@monorepo-tools/website/ui-synthetic-monorepos": [
"libs/website/ui-synthetic-monorepos/src/index.ts"
],
"@monorepo-tools/website/ui-typescript": [
"libs/website/ui-typescript/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}