X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=d70710b82f1455e139d6eb129dc355dec379feeb;hb=28798b5d949826551740fc893d06e6424b77aa6a;hp=7dc1a2457dc4ba979651fa72a82c7b73997be030;hpb=039cdfc528a26ddb19b0b3bcdf09f825723b37b5;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index 7dc1a2457..d70710b82 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -3,24 +3,36 @@ "target": "es5", "module": "commonjs", "moduleResolution": "node", - "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, - "noImplicitAny": false, - "noEmitHelpers": true + "allowSyntheticDefaultImports": true, + "sourceMap": true, + "noEmitHelpers": true, + "strictNullChecks": false, + "baseUrl": "./src", + "paths": [ + ], + "lib": [ + "dom", + "es6" + ], + "types": [ + "node", + "source-map", + "uglify-js", + "videojs", + "webpack" + ] }, + "exclude": [ + "node_modules", + "dist" + ], "awesomeTypescriptLoaderOptions": { - "forkChecker": true + "forkChecker": true, + "useWebpackText": true }, "compileOnSave": false, "buildOnSave": false, - "filesGlob": [ - "**/*.ts", - "!node_modules/**" - ], - "exclude": [ - "node_modules", - "typings/main", - "typings/main.d.ts" - ] + "atom": { "rewriteTsconfig": false } }