diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-09-06 22:40:57 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-09-06 22:40:57 +0200 |
commit | ab32b0fc805b92c5a1d7ac5901cb1a38e94622ca (patch) | |
tree | 1749a7390cf0a726a179c5fa554053f5c0f0e51c /client/tsconfig.json | |
parent | 088a967fe0bc285aa7811515f6a9655e1144b9f9 (diff) | |
download | PeerTube-ab32b0fc805b92c5a1d7ac5901cb1a38e94622ca.tar.gz PeerTube-ab32b0fc805b92c5a1d7ac5901cb1a38e94622ca.tar.zst PeerTube-ab32b0fc805b92c5a1d7ac5901cb1a38e94622ca.zip |
Dirty update to Angular RC6
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r-- | client/tsconfig.json | 41 |
1 files changed, 28 insertions, 13 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json index 7dc1a2457..c4e2a8804 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json | |||
@@ -3,24 +3,39 @@ | |||
3 | "target": "es5", | 3 | "target": "es5", |
4 | "module": "commonjs", | 4 | "module": "commonjs", |
5 | "moduleResolution": "node", | 5 | "moduleResolution": "node", |
6 | "sourceMap": true, | ||
7 | "emitDecoratorMetadata": true, | 6 | "emitDecoratorMetadata": true, |
8 | "experimentalDecorators": true, | 7 | "experimentalDecorators": true, |
9 | "noImplicitAny": false, | 8 | "allowSyntheticDefaultImports": true, |
10 | "noEmitHelpers": true | 9 | "sourceMap": true, |
10 | "noEmitHelpers": true, | ||
11 | "strictNullChecks": false, | ||
12 | "baseUrl": "./src", | ||
13 | "paths": [ | ||
14 | ], | ||
15 | "lib": [ | ||
16 | "dom", | ||
17 | "es6" | ||
18 | ], | ||
19 | "types": [ | ||
20 | "hammerjs", | ||
21 | "jasmine", | ||
22 | "node", | ||
23 | "protractor", | ||
24 | "selenium-webdriver", | ||
25 | "source-map", | ||
26 | "uglify-js", | ||
27 | "webpack" | ||
28 | ] | ||
11 | }, | 29 | }, |
30 | "exclude": [ | ||
31 | "node_modules", | ||
32 | "dist" | ||
33 | ], | ||
12 | "awesomeTypescriptLoaderOptions": { | 34 | "awesomeTypescriptLoaderOptions": { |
13 | "forkChecker": true | 35 | "forkChecker": true, |
36 | "useWebpackText": true | ||
14 | }, | 37 | }, |
15 | "compileOnSave": false, | 38 | "compileOnSave": false, |
16 | "buildOnSave": false, | 39 | "buildOnSave": false, |
17 | "filesGlob": [ | 40 | "atom": { "rewriteTsconfig": false } |
18 | "**/*.ts", | ||
19 | "!node_modules/**" | ||
20 | ], | ||
21 | "exclude": [ | ||
22 | "node_modules", | ||
23 | "typings/main", | ||
24 | "typings/main.d.ts" | ||
25 | ] | ||
26 | } | 41 | } |