-
Notifications
You must be signed in to change notification settings - Fork 40
/
tsconfig.base.json
42 lines (42 loc) · 1.39 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
37
38
39
40
41
42
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"importHelpers": false,
"strict": true,
"strictNullChecks": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"baseUrl": ".",
"paths": {
"movex": ["libs/movex/src/index.ts"],
"movex-core-util": ["libs/movex-core-util/src/index.ts"],
"movex-examples": ["libs/movex-examples/src/index.ts"],
"movex-master": ["libs/movex-master/src/index.ts"],
"movex-react": ["libs/movex-react/src/index.ts"],
"movex-react-local-master": [
"libs/movex-react-local-master/src/index.ts"
],
"movex-server": ["libs/movex-server/src/index.ts"],
"movex-service": ["libs/movex-service/src/index.ts"],
"movex-specs-util": ["libs/movex-specs-util/src/index.ts"],
"movex-store": ["libs/movex-store/src/index.ts"],
"movex-vue": ["libs/movex-vue/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}