We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49720f1 commit bf7f745Copy full SHA for bf7f745
tsconfig.json
@@ -2,15 +2,21 @@
2
"compilerOptions": {
3
"outDir": "lib",
4
"target": "es5",
5
- "lib": ["es6", "dom"],
+ "lib": ["es7", "dom"],
6
+ "sourceMap": true,
7
+ "inlineSources": true,
8
"module": "commonjs",
9
"moduleResolution": "node",
- "declaration": true,
10
+ "removeComments": true,
11
+ "strict": false,
12
"noImplicitAny": true,
- "noUnusedParameters": false,
13
+ "strictNullChecks": false,
14
+ "noImplicitThis": false,
15
+ "alwaysStrict": true,
16
"noUnusedLocals": true,
- "removeComments": true,
- "sourceMap": false
17
+ "noUnusedParameters": false,
18
+ "noImplicitReturns": true,
19
+ "noFallthroughCasesInSwitch": true
20
},
21
"include": [
22
"./src/**/*.ts"
0 commit comments