]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/tsconfig.json
Update client modules
[github/Chocobozzz/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 },
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 }