Skip to content

Commit c12a9d7

Browse files
committed
(#117) Clean TypeScript config
1 parent 04d7200 commit c12a9d7

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

tsconfig.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
{
22
"compilerOptions": {
3-
"target": "es5",
3+
"target": "ES2018",
44
"module": "commonjs",
55
"lib": [
66
"es6"
77
],
8-
"typeRoots": ["./node_modules/@types/", "./lib/types/"],
98
"outDir": "./dist",
109
"declaration": true,
11-
10+
"declarationMap": true,
11+
"sourceMap": true,
1212
"strict": true,
13-
"alwaysStrict": true,
14-
13+
"noImplicitAny": true,
1514
"noUnusedLocals": true,
15+
"noUnusedParameters": true,
1616
"noImplicitReturns": true,
1717

1818
"esModuleInterop": true,
19-
"experimentalDecorators": true,
20-
"emitDecoratorMetadata": true
2119
},
2220
"include": [
2321
"lib/**/*.ts",

0 commit comments

Comments
 (0)