PeerTube/tsconfig.json

47 lines
871 B
JSON
Raw Normal View History

2017-05-15 22:22:03 +02:00
{
"compilerOptions": {
"module": "commonjs",
2017-12-12 17:53:50 +01:00
"target": "es2015",
2017-05-15 22:22:03 +02:00
"noImplicitAny": false,
"sourceMap": false,
2017-12-12 17:53:50 +01:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2020-06-05 10:03:53 +02:00
"importHelpers": true,
"removeComments": true,
2021-07-06 12:01:59 +02:00
"strictBindCallApply": true,
2021-08-27 14:32:44 +02:00
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
2017-05-15 22:22:03 +02:00
"outDir": "./dist",
"lib": [
2017-09-04 21:21:47 +02:00
"dom",
2017-12-12 17:53:50 +01:00
"es2015",
"es2016",
2020-05-06 10:31:52 +02:00
"es2017",
"es2018",
"es2019"
2017-05-15 22:22:03 +02:00
],
2019-10-21 14:50:55 +02:00
"typeRoots": [
2020-06-18 10:45:25 +02:00
"node_modules/@types",
"server/typings"
2019-10-21 14:50:55 +02:00
],
2019-08-15 11:53:26 +02:00
"baseUrl": "./",
"paths": {
"@server/*": [ "server/*" ],
"@shared/*": [ "shared/*" ]
2019-08-15 11:53:26 +02:00
}
2017-05-15 22:22:03 +02:00
},
"exclude": [
"server/tools/",
2017-05-15 22:22:03 +02:00
"node_modules",
2018-01-30 13:27:07 +01:00
"dist",
"storage",
"client",
"test1",
"test2",
"test3",
"test4",
"test5",
"test6"
2017-05-15 22:22:03 +02:00
]
}