-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
38 lines (38 loc) · 971 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
{
"compilerOptions": {
"baseUrl": "tsconfig",
"lib": ["es2018", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedParameters": false,
"noUnusedLocals": false,
"rootDir": ".",
"rootDirs": [
".", "./dist-schema"],
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"strictNullChecks": true,
"target": "es2019",
"types": ["node", "jest", "jest-extended"],
"esModuleInterop": true,
"jsx": "react"
},
"files": ["node_modules/jest-extended/types/index.d.ts"],
"include": ["./**/*"],
"exclude": [
"./*/files/**/*",
"./*/other-files/**/*",
"./*/project-files/**/*",
"./*/schematic-files/**/*",
"packages/d2c-schematics/node_modules",
"dist",
"**/node_modules/**/*",
"**/dist/**/*",
"**/*/*.test.ts"
]
}