-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
41 lines (41 loc) · 949 Bytes
/
tsconfig.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
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"moduleResolution": "node",
"allowJs": true,
"checkJs": true,
"strict": true,
"pretty": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2019",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"typeRoots": ["@types", "node_modules/@types"],
"paths": {
"*": ["node_modules/*"],
"../*": ["src/*"]
}
},
"include": ["src/**/*"],
"exclude": [
"node_modules",
"**/*.spec.ts",
".vscode",
"dist/**/*",
"e2e/**/*",
"e2e/**/*"
]
}