Skip to content

Commit 7a486bf

Browse files
committed
updated tsconfig
included 2016 array include new TS 2.0 options
1 parent b35b286 commit 7a486bf

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

src/tsconfig.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,17 @@
44
"declaration": false,
55
"jsx": "react",
66
"module": "system",
7+
"newLine": "LF",
78
"noEmit": true,
89
"noEmitOnError": true,
910
"noImplicitAny": false,
10-
"noResolve": false,
11+
"noImplicitThis": false,
12+
"noUnusedLocals": true,
13+
"noUnusedParameters": true,
14+
"noResolve": true,
1115
"outDir": "../out",
1216
"preserveConstEnums": true,
17+
"pretty": true,
1318
"removeComments": true,
1419
"isolatedModules": false,
1520
"sourceMap": false,
@@ -21,8 +26,11 @@
2126
"noImplicitReturns": true,
2227
"noFallthroughCasesInSwitch": true,
2328
"allowUnreachableCode": false,
29+
"typeRoots": ["../node_modules/@types/"],
30+
"allowJs": false,
2431
"noImplicitUseStrict": false,
25-
"typeRoots": ["../node_modules/@types/"]
32+
"lib": ["es5", "es6", "es2016.array.include"],
33+
"strictNullChecks": false
2634
},
2735
"include": [
2836
"**/*"
@@ -33,10 +41,10 @@
3341
"test-runner.tsx",
3442
"**/*.spec.*"
3543
],
36-
"atom": {
44+
"vscode": {
3745
"rewriteTsconfig": true
3846
},
39-
"vscode": {
47+
"atom": {
4048
"rewriteTsconfig": true
4149
},
4250
"formatCodeOptions": {

0 commit comments

Comments
 (0)