|
|
@@ -3,10 +3,7 @@
|
|
|
"moduleResolution": "node",
|
|
|
"outDir": "public/dist",
|
|
|
"target": "es5",
|
|
|
- "lib": [
|
|
|
- "es6",
|
|
|
- "dom"
|
|
|
- ],
|
|
|
+ "lib": ["es6", "dom"],
|
|
|
"rootDir": "public/",
|
|
|
"jsx": "react",
|
|
|
"module": "esnext",
|
|
|
@@ -14,9 +11,9 @@
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
"esModuleInterop": true,
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
- "importHelpers": true, // importing helper functions from tslib
|
|
|
- "noEmitHelpers": true, // disable emitting inline helper functions
|
|
|
- "removeComments": false, // comments are needed by angular injections
|
|
|
+ "importHelpers": true,
|
|
|
+ "noEmitHelpers": true,
|
|
|
+ "removeComments": false,
|
|
|
"inlineSourceMap": false,
|
|
|
"sourceMap": true,
|
|
|
"noEmitOnError": false,
|
|
|
@@ -30,14 +27,8 @@
|
|
|
"baseUrl": "public",
|
|
|
"pretty": true,
|
|
|
"paths": {
|
|
|
- "app": [
|
|
|
- "app"
|
|
|
- ]
|
|
|
+ "app": ["app"]
|
|
|
}
|
|
|
},
|
|
|
- "include": [
|
|
|
- "public/app/**/*.ts",
|
|
|
- "public/app/**/*.tsx",
|
|
|
- "public/test/**/*.ts"
|
|
|
- ]
|
|
|
-}
|
|
|
+ "include": ["public/app/**/*.ts", "public/app/**/*.tsx", "public/test/**/*.ts"]
|
|
|
+}
|