PeerTube/tsconfig.json

31 lines
473 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"
]
},
"exclude": [
"node_modules",
"client",
"text1",
"text2",
"text3",
"text4",
"text5",
"text6"
2017-05-15 22:22:03 +02:00
]
}