Skip to content
This repository was archived by the owner on Feb 17, 2024. It is now read-only.

Commit 5650ef8

Browse files
committed
chore: update tsconfig for ts2
1 parent 622b019 commit 5650ef8

File tree

1 file changed

+23
-16
lines changed

1 file changed

+23
-16
lines changed

tsconfig.json

+23-16
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
11
{
2-
"version": "1.5.0",
32
"compilerOptions": {
43
"target": "es5",
5-
"module": "commonjs",
6-
"declaration": false,
7-
"noImplicitAny": false,
8-
"removeComments": true,
9-
"noLib": false,
104
"emitDecoratorMetadata": true,
5+
"experimentalDecorators": true,
6+
"allowSyntheticDefaultImports": false,
7+
"noEmitHelpers": true,
8+
"pretty": true,
119
"sourceMap": true,
12-
"listFiles": true,
13-
"outDir": "dist"
10+
"lib": ["es5", "dom"],
11+
"strictNullChecks": false,
12+
"baseUrl": "./src",
13+
"paths": [
14+
],
15+
"types": [
16+
"core-js",
17+
"node"
18+
]
1419
},
15-
"files": [
16-
"node_modules/typescript/bin/lib.es6.d.ts",
17-
"node_modules/immutable/dist/immutable.d.ts",
18-
"src/custom_typings/ng2.d.ts",
19-
"typings/tsd.d.ts",
20-
"src/components/app.ts",
21-
"src/bootstrap.ts"
22-
]
20+
"exclude": [
21+
"node_modules"
22+
],
23+
"awesomeTypescriptLoaderOptions": {
24+
"useWebpackText": true,
25+
"forkChecker": true
26+
},
27+
"compileOnSave": false,
28+
"buildOnSave": false,
29+
"atom": { "rewriteTsconfig": false }
2330
}

0 commit comments

Comments
 (0)