Client: use tslib instead of ts-helpers
[oweals/peertube.git] / client / tsconfig.json
1 {
2   "compilerOptions": {
3     "target": "es5",
4     "module": "commonjs",
5     "moduleResolution": "node",
6     "emitDecoratorMetadata": true,
7     "experimentalDecorators": true,
8     "allowSyntheticDefaultImports": true,
9     "sourceMap": true,
10     "noEmitHelpers": true,
11     "importHelpers": true,
12     "strictNullChecks": false,
13     "baseUrl": "./src",
14     "paths": [
15     ],
16     "lib": [
17       "dom",
18       "es6"
19     ],
20     "types": [
21       "node",
22       "source-map",
23       "uglify-js",
24       "videojs",
25       "webpack"
26     ]
27   },
28   "exclude": [
29     "node_modules",
30     "dist"
31   ],
32   "awesomeTypescriptLoaderOptions": {
33     "forkChecker": true,
34     "useWebpackText": true
35   },
36   "compileOnSave": false,
37   "buildOnSave": false,
38   "atom": { "rewriteTsconfig": false }
39 }