-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 581 Bytes
/
Copy pathtsconfig.json
File metadata and controls
21 lines (21 loc) · 581 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"allowUnreachableCode": false,
"baseUrl": ".",
"declaration": false,
"importHelpers": true,
"module": "commonjs",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"pretty": true,
"preserveSymlinks": true,
"skipLibCheck": true,
"strict": true,
"target": "es2018",
"lib": ["es2018", "dom"],
"plugins": [{ "name": "typescript-eslint-language-service" }]
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "**/__tests__/*.ts", "schematics/*/files"]
}