sepia-search-motore-di-rice.../tsconfig.json

31 lines
508 B
JSON
Raw Normal View History

2020-02-13 11:49:03 +01:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
"noImplicitAny": false,
"sourceMap": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"outDir": "./dist",
"lib": [
"dom",
"es2015",
"es2016",
"es2017"
],
"types": [
"node"
],
2020-02-13 16:06:52 +01:00
"baseUrl": ".",
"paths": {
"@shared/*": [ "PeerTube/shared/*" ]
}
2020-02-13 11:49:03 +01:00
},
"exclude": [
"node_modules",
"dist",
"client",
"PeerTube"
]
}