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