]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/tsconfig.json
Server: update to webseed implementation (tests, lint...)
[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 "strictNullChecks": false,
12 "baseUrl": "./src",
13 "paths": [
14 ],
15 "lib": [
16 "dom",
17 "es6"
18 ],
19 "types": [
20 "node",
21 "source-map",
22 "uglify-js",
23 "webpack"
24 ]
25 },
26 "exclude": [
27 "node_modules",
28 "dist"
29 ],
30 "awesomeTypescriptLoaderOptions": {
31 "forkChecker": true,
32 "useWebpackText": true
33 },
34 "compileOnSave": false,
35 "buildOnSave": false,
36 "atom": { "rewriteTsconfig": false }
37 }