Client: display video tags
[oweals/peertube.git] / client / tsconfig.webpack.json
1 {
2   "compilerOptions": {
3     "target": "es5",
4     "module": "es2015",
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     "outDir": "./dist",
15     "paths": [
16     ],
17     "lib": [
18       "dom",
19       "es6"
20     ],
21     "types": [
22       "node",
23       "source-map",
24       "uglify-js",
25       "videojs",
26       "webpack"
27     ]
28   },
29   "exclude": [
30     "node_modules",
31     "dist"
32   ],
33   "awesomeTypescriptLoaderOptions": {
34     "forkChecker": true,
35     "useWebpackText": true
36   },
37   "angularCompilerOptions": {
38     "genDir": "./compiled",
39     "skipMetadataEmit": true
40   },
41   "compileOnSave": false,
42   "buildOnSave": false,
43   "atom": { "rewriteTsconfig": false }
44 }