diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-12-11 17:36:46 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2017-12-12 10:58:16 +0100 |
commit | 63c4db6d71b98523753c51747e308682d9a2e8a0 (patch) | |
tree | d26c0d092ce016f2afe56bf71b08ca4698fe673f /client/tsconfig.json | |
parent | 908f6e5e38e85cc0debab0051b7fa34b13025f96 (diff) | |
download | PeerTube-63c4db6d71b98523753c51747e308682d9a2e8a0.tar.gz PeerTube-63c4db6d71b98523753c51747e308682d9a2e8a0.tar.zst PeerTube-63c4db6d71b98523753c51747e308682d9a2e8a0.zip |
Move to angular cli
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r-- | client/tsconfig.json | 33 |
1 files changed, 10 insertions, 23 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json index 66c7bb444..a6c016bf3 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json | |||
@@ -1,32 +1,19 @@ | |||
1 | { | 1 | { |
2 | "compileOnSave": false, | ||
2 | "compilerOptions": { | 3 | "compilerOptions": { |
3 | "target": "es5", | 4 | "outDir": "./dist/out-tsc", |
4 | "module": "commonjs", | 5 | "sourceMap": true, |
6 | "declaration": false, | ||
5 | "moduleResolution": "node", | 7 | "moduleResolution": "node", |
6 | "emitDecoratorMetadata": true, | 8 | "emitDecoratorMetadata": true, |
7 | "experimentalDecorators": true, | 9 | "experimentalDecorators": true, |
8 | "allowSyntheticDefaultImports": true, | 10 | "target": "es5", |
9 | "sourceMap": true, | 11 | "typeRoots": [ |
10 | "noEmitHelpers": true, | 12 | "node_modules/@types" |
11 | "importHelpers": true, | ||
12 | "strictNullChecks": false, | ||
13 | "baseUrl": "./src", | ||
14 | "paths": [ | ||
15 | ], | 13 | ], |
16 | "lib": [ | 14 | "lib": [ |
17 | "dom", | 15 | "es2017", |
18 | "es6" | 16 | "dom" |
19 | ] | 17 | ] |
20 | }, | 18 | } |
21 | "exclude": [ | ||
22 | "node_modules", | ||
23 | "dist" | ||
24 | ], | ||
25 | "awesomeTypescriptLoaderOptions": { | ||
26 | "forkChecker": true, | ||
27 | "useWebpackText": true | ||
28 | }, | ||
29 | "compileOnSave": false, | ||
30 | "buildOnSave": false, | ||
31 | "atom": { "rewriteTsconfig": false } | ||
32 | } | 19 | } |