]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/tsconfig.json
Change "delete" to "delete this report"
[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 "noImplicitAny": true,
11 "suppressImplicitAnyIndexErrors":true,
12 "alwaysStrict": true,
13 "target": "es5",
14 "typeRoots": [
15 "node_modules/@types"
16 ],
17 "lib": [
18 "es2017",
19 "es2016",
20 "es2015",
21 "dom"
22 ],
23 "types": [
24 "jasmine"
25 ],
26 "baseUrl": "src",
27 "paths": {
28 "@app/*": [ "app/*" ],
29 "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ],
30 "fs": [ "./shims/noop" ],
31 "http": [ "./shims/http" ],
32 "https": [ "./shims/https" ],
33 "path": [ "./shims/path" ],
34 "stream": [ "./shims/noop" ],
35 "crypto": [ "./shims/noop" ]
36 }
37 },
38 "angularCompilerOptions": {
39 "strictInjectionParameters": true,
40 "fullTemplateTypeCheck": true
41 },
42 "exclude": [
43 "../node_modules",
44 "node_modules",
45 "dist",
46 "../server",
47 "src/**/*.spec.ts"
48 ]
49 }