]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/tsconfig.json
Try to handle truncated markdown links
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
1 {
2 "compileOnSave": false,
3 "compilerOptions": {
4 "outDir": "./dist/out-tsc",
5 "sourceMap": true,
6 "declaration": false,
7 "moduleResolution": "node",
8 "emitDecoratorMetadata": true,
9 "experimentalDecorators": true,
10 "target": "es5",
11 "typeRoots": [
12 "node_modules/@types"
13 ],
14 "lib": [
15 "es2017",
16 "es2016",
17 "es2015",
18 "dom"
19 ],
20 "baseUrl": "src",
21 "paths": {
22 "@app/*": [ "app/*" ],
23 "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ],
24 "fs": [ "./shims/noop" ],
25 "http": [ "./shims/http" ],
26 "https": [ "./shims/https" ],
27 "path": [ "./shims/path" ],
28 "stream": [ "./shims/noop" ],
29 "crypto": [ "./shims/noop" ]
30 }
31 },
32 "exclude": [
33 "../node_modules",
34 "node_modules",
35 "dist",
36 "../server"
37 ]
38 }