Skip to content

Commit 8d93774

Browse files
committed
fixed tsconfig for tsc cli compile
1 parent 6bad9c4 commit 8d93774

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"module": "es6",
77
"newLine": "LF",
88
"noEmit": true,
9-
"noEmitOnError": true,
9+
"noEmitOnError": false,
1010
"noImplicitAny": false,
1111
"noImplicitThis": false,
1212
"noUnusedLocals": false,
1313
"noUnusedParameters": false,
14-
"noResolve": true,
14+
"noResolve": false,
1515
"outDir": "../out",
1616
"preserveConstEnums": true,
1717
"pretty": true,
@@ -26,11 +26,11 @@
2626
"noImplicitReturns": true,
2727
"noFallthroughCasesInSwitch": true,
2828
"allowUnreachableCode": false,
29-
"typeRoots": ["../node_modules/@types/"],
29+
"typeRoots": ["../node_modules/@types/**/*"],
3030
"allowJs": false,
3131
"allowSyntheticDefaultImports": true,
3232
"noImplicitUseStrict": false,
33-
"lib": ["es5", "es6", "es2016.array.include"],
33+
"lib": ["es5", "es6", "dom", "es2015.iterable", "es2016.array.include"],
3434
"strictNullChecks": false
3535
},
3636
"include": [

0 commit comments

Comments
 (0)