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 04d7200 commit c12a9d7Copy full SHA for c12a9d7
tsconfig.json
@@ -1,23 +1,21 @@
1
{
2
"compilerOptions": {
3
- "target": "es5",
+ "target": "ES2018",
4
"module": "commonjs",
5
"lib": [
6
"es6"
7
],
8
- "typeRoots": ["./node_modules/@types/", "./lib/types/"],
9
"outDir": "./dist",
10
"declaration": true,
11
-
+ "declarationMap": true,
+ "sourceMap": true,
12
"strict": true,
13
- "alwaysStrict": true,
14
+ "noImplicitAny": true,
15
"noUnusedLocals": true,
+ "noUnusedParameters": true,
16
"noImplicitReturns": true,
17
18
"esModuleInterop": true,
19
- "experimentalDecorators": true,
20
- "emitDecoratorMetadata": true
21
},
22
"include": [
23
"lib/**/*.ts",
0 commit comments