1
0
Fork 0
peertube/tsconfig.json

38 lines
718 B
JSON
Raw Normal View History

2017-05-15 20:22:03 +00:00
{
"compilerOptions": {
"module": "commonjs",
2017-12-12 16:53:50 +00:00
"target": "es2015",
2017-05-15 20:22:03 +00:00
"noImplicitAny": false,
"sourceMap": false,
2017-12-12 16:53:50 +00:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"removeComments": true,
2017-05-15 20:22:03 +00:00
"outDir": "./dist",
"lib": [
2017-09-04 19:21:47 +00:00
"dom",
2017-12-12 16:53:50 +00:00
"es2015",
"es2016",
"es2017"
2017-05-15 20:22:03 +00:00
],
2019-08-15 09:53:26 +00:00
"typeRoots": [ "node_modules/@types", "server/typings" ],
"baseUrl": "./",
"paths": {
"@server/typings/*": [ "server/typings/*" ],
"@server/models/*": [ "server/models/*" ]
}
2017-05-15 20:22:03 +00:00
},
"exclude": [
"server/tools/",
2017-05-15 20:22:03 +00:00
"node_modules",
2018-01-30 12:27:07 +00:00
"dist",
"storage",
"client",
"test1",
"test2",
"test3",
"test4",
"test5",
"test6"
2017-05-15 20:22:03 +00:00
]
}