1
0
Fork 0
peertube/tsconfig.json

45 lines
813 B
JSON
Raw Normal View History

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