X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=43b27ce8eea04e40a719a11042744fbd60354ee2;hb=0960af624e24430238277d0011706e97eeee8c77;hp=10573b8ee4e1c188b8d90ba3ec8dfad03dcc3410;hpb=ad22074a780b4bdbe3cd9e903b3fa5ef83eaef14;p=oweals%2Fpeertube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index 10573b8ee..43b27ce8e 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -1,37 +1,23 @@ { + "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" + "es2017", + "dom" ], - "types": [ - "node", - "source-map", - "uglify-js", - "webpack" - ] - }, - "exclude": [ - "node_modules", - "dist" - ], - "awesomeTypescriptLoaderOptions": { - "forkChecker": true, - "useWebpackText": true - }, - "compileOnSave": false, - "buildOnSave": false, - "atom": { "rewriteTsconfig": false } + "baseUrl": "src", + "paths": { + "@app/*": [ "app/*" ] + } + } }