]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/tsconfig.json
Try to fix embed webpack build
[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 "types": [
21 "jasmine"
22 ],
23 "baseUrl": "src",
24 "paths": {
25 "@app/*": [ "app/*" ],
26 "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ],
27 "fs": [ "./shims/noop" ],
28 "http": [ "./shims/http" ],
29 "https": [ "./shims/https" ],
30 "path": [ "./shims/path" ],
31 "stream": [ "./shims/noop" ],
32 "crypto": [ "./shims/noop" ]
33 }
34 },
35 "exclude": [
36 "../node_modules",
37 "node_modules",
38 "dist",
39 "../server",
40 "src/**/*.spec.ts"
41 ]
42 }