PeerTube/client/tsconfig.json

48 lines
1.0 KiB
JSON
Raw Normal View History

2016-03-07 14:48:46 +01:00
{
2017-12-11 17:36:46 +01:00
"compileOnSave": false,
2016-03-07 14:48:46 +01:00
"compilerOptions": {
2017-12-11 17:36:46 +01:00
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
2016-03-07 14:48:46 +01:00
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2018-09-28 10:36:26 +02:00
"noImplicitAny": false,
2017-12-11 17:36:46 +01:00
"target": "es5",
"typeRoots": [
"node_modules/@types"
2016-09-06 22:40:57 +02:00
],
"lib": [
2017-12-11 17:36:46 +01:00
"es2017",
2018-05-07 10:37:22 +02:00
"es2016",
"es2015",
2017-12-11 17:36:46 +01:00
"dom"
2018-01-04 11:19:16 +01:00
],
2018-09-03 11:26:19 +02:00
"types": [
"jasmine"
],
2018-01-04 11:19:16 +01:00
"baseUrl": "src",
"paths": {
2018-06-07 16:50:33 +02:00
"@app/*": [ "app/*" ],
"video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ],
"fs": [ "./shims/noop" ],
"http": [ "./shims/http" ],
"https": [ "./shims/https" ],
"path": [ "./shims/path" ],
"stream": [ "./shims/noop" ],
"crypto": [ "./shims/noop" ]
2018-01-04 11:19:16 +01:00
}
2018-07-20 18:31:49 +02:00
},
2018-09-28 10:36:26 +02:00
"angularCompilerOptions": {
"strictInjectionParameters": true,
"fullTemplateTypeCheck": true
},
2018-07-20 18:31:49 +02:00
"exclude": [
"../node_modules",
"node_modules",
"dist",
2018-09-03 11:26:19 +02:00
"../server",
"src/**/*.spec.ts"
2018-07-20 18:31:49 +02:00
]
2016-03-07 14:48:46 +01:00
}