X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=webapp%2Ftsconfig.json;h=d82d78b66ad950eb3181a2297820bb84467b87fa;hb=2d3f1be6a495143d7e82f6396a49dfff6cabc3e4;hp=9bad68197b10f2a63839f4a7fcec203c099e1ddb;hpb=2d90eac319979dba64371258b30e61e77a15db7d;p=src%2Fxds%2Fxds-agent.git diff --git a/webapp/tsconfig.json b/webapp/tsconfig.json index 9bad681..d82d78b 100644 --- a/webapp/tsconfig.json +++ b/webapp/tsconfig.json @@ -1,18 +1,22 @@ { + "compileOnSave": false, "compilerOptions": { - "outDir": "dist/app", - "target": "es5", - "module": "commonjs", - "moduleResolution": "node", + "outDir": "./dist/out-tsc", "sourceMap": true, + "declaration": false, + "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, - "removeComments": false, - "noImplicitAny": false, - "noStrictGenericChecks": true // better to switch to RxJS 5.4.2 ; workaround https://stackoverflow.com/questions/44810195/how-do-i-get-around-this-subject-incorrectly-extends-observable-error-in-types - }, - "exclude": [ - "gulpfile.ts", - "node_modules" - ] + "target": "es5", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2017", + "dom" + ], + "plugins": [ + { "name": "tslint-language-service"} + ] + } }