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