X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=66c7bb4443a9f60fecf74c229a02487ae8352642;hb=6a9e1d42f878c55ac5e2af8a1c98e6fe28a04f36;hp=3e4648cf7914e37b6362164f1cf347adc15a52a6;hpb=230809efa1e7e81ce60cd65f8b398f01a27d525b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index 3e4648cf7..66c7bb444 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -3,16 +3,30 @@ "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" + ] }, "exclude": [ "node_modules", - "typings/main", - "typings/main.d.ts" + "dist" ], - "compileOnSave": false + "awesomeTypescriptLoaderOptions": { + "forkChecker": true, + "useWebpackText": true + }, + "compileOnSave": false, + "buildOnSave": false, + "atom": { "rewriteTsconfig": false } }