X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=a6c016bf38ad7b4c02385b2e5797752c227bb2e0;hb=6d8524702874120a4667269a81a61e3c7c5e300d;hp=d70710b82f1455e139d6eb129dc355dec379feeb;hpb=e31f6ad6373c70481bc5dc50bcd9691ef69b2c4b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index d70710b82..a6c016bf3 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -1,38 +1,19 @@ { + "compileOnSave": false, "compilerOptions": { - "target": "es5", - "module": "commonjs", + "outDir": "./dist/out-tsc", + "sourceMap": true, + "declaration": false, "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, - "allowSyntheticDefaultImports": true, - "sourceMap": true, - "noEmitHelpers": true, - "strictNullChecks": false, - "baseUrl": "./src", - "paths": [ + "target": "es5", + "typeRoots": [ + "node_modules/@types" ], "lib": [ - "dom", - "es6" - ], - "types": [ - "node", - "source-map", - "uglify-js", - "videojs", - "webpack" + "es2017", + "dom" ] - }, - "exclude": [ - "node_modules", - "dist" - ], - "awesomeTypescriptLoaderOptions": { - "forkChecker": true, - "useWebpackText": true - }, - "compileOnSave": false, - "buildOnSave": false, - "atom": { "rewriteTsconfig": false } + } }