-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (33 loc) · 887 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
{
"compileOnSave": false,
"compilerOptions": {
"target": "es2017",
"module": "es2015",
"moduleResolution": "node",
"inlineSourceMap": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"traceResolution": false,
"listEmittedFiles": false,
"listFiles": false,
"pretty": true,
"lib": ["es2017", "dom"],
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"types": [],
"typeRoots": ["node_modules/@types"]
},
"include": ["src/**/*", "src/types.d.ts"],
"exclude": ["node_modules/**"]
}