]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tsconfig.webpack.json
Client: generate js files in dist directory
[github/Chocobozzz/PeerTube.git] / client / tsconfig.webpack.json
CommitLineData
c16ce1de
C
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 "strictNullChecks": false,
12 "baseUrl": "./src",
70526419 13 "outDir": "./dist",
c16ce1de
C
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 "angularCompilerOptions": {
37 "genDir": "./compiled",
38 "skipMetadataEmit": true
39 },
40 "compileOnSave": false,
41 "buildOnSave": false,
42 "atom": { "rewriteTsconfig": false }
43}