PeerTube/tsconfig.json

45 lines
813 B
JSON
Raw Normal View History

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