PeerTube/client/tsconfig.json

24 lines
435 B
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,
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",
"dom"
2018-01-04 11:19:16 +01:00
],
"baseUrl": "src",
"paths": {
"@app/*": [ "app/*" ]
}
2017-12-11 17:36:46 +01:00
}
2016-03-07 14:48:46 +01:00
}