X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=115af1f83d21056a51d672bab3e7cf7d81af4b48;hb=361b7df2a257d1c44ec1d79128a9065b563090d8;hp=3e4648cf7914e37b6362164f1cf347adc15a52a6;hpb=230809efa1e7e81ce60cd65f8b398f01a27d525b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index 3e4648cf7..115af1f83 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -3,16 +3,37 @@ "target": "es5", "module": "commonjs", "moduleResolution": "node", - "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, - "removeComments": false, - "noImplicitAny": false + "allowSyntheticDefaultImports": true, + "sourceMap": true, + "noEmitHelpers": true, + "importHelpers": true, + "strictNullChecks": false, + "baseUrl": "./src", + "paths": [ + ], + "lib": [ + "dom", + "es6" + ], + "types": [ + "node", + "source-map", + "uglify-js", + "videojs", + "webpack" + ] }, "exclude": [ "node_modules", - "typings/main", - "typings/main.d.ts" + "dist" ], - "compileOnSave": false + "awesomeTypescriptLoaderOptions": { + "forkChecker": true, + "useWebpackText": true + }, + "compileOnSave": false, + "buildOnSave": false, + "atom": { "rewriteTsconfig": false } }