PeerTube/tsconfig.json

35 lines
544 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,
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",
"es2017"
2017-05-15 22:22:03 +02:00
],
"types": [
"node",
"chai-xml",
"chai-json-schema"
2017-05-15 22:22:03 +02:00
]
},
"exclude": [
"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
]
}