X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=66c7bb4443a9f60fecf74c229a02487ae8352642;hb=f47bf2e142b0b22460558e23720f5aed8deb982c;hp=ca58ddb899554265d570abf670136914b2a79421;hpb=6f4e252246c715a1dafc1e236c8074b08cdd12a3;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index ca58ddb89..66c7bb444 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -1,18 +1,32 @@ { "compilerOptions": { "target": "es5", - "module": "system", + "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 } }