-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtsconfig.json
More file actions
20 lines (20 loc) · 486 Bytes
/
Copy pathtsconfig.json
File metadata and controls
20 lines (20 loc) · 486 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"compilerOptions": {
"module": "CommonJS",
"noImplicitAny": false,
"declaration": true,
"removeComments": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipDefaultLibCheck": false,
"skipLibCheck": false,
"declarationMap": true,
"sourceMap": true,
"target": "ESNext",
"strict": true,
"lib": ["DOM", "ES6", "ESNext"],
"outDir": "./dist",
},
"include": ["lib/*", "lib/**/*"],
"exclude": ["/**/*.spec.ts", "/*.spec.ts", "tests", "*/tests"]
}