2017-05-15 16:22:03 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2017-12-12 11:53:50 -05:00
|
|
|
"target": "es2015",
|
2017-05-15 16:22:03 -04:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"sourceMap": false,
|
2017-12-12 11:53:50 -05:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2017-05-15 16:22:03 -04:00
|
|
|
"outDir": "./dist",
|
|
|
|
"lib": [
|
2017-09-04 15:21:47 -04:00
|
|
|
"dom",
|
2017-12-12 11:53:50 -05:00
|
|
|
"es2015",
|
|
|
|
"es2016",
|
|
|
|
"es2017"
|
2017-05-15 16:22:03 -04:00
|
|
|
],
|
|
|
|
"types": [
|
2018-04-18 10:08:36 -04:00
|
|
|
"node",
|
|
|
|
"chai-xml",
|
|
|
|
"chai-json-schema"
|
2017-05-15 16:22:03 -04:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2018-01-30 07:27:07 -05:00
|
|
|
"dist",
|
|
|
|
"storage",
|
2018-01-25 09:05:18 -05:00
|
|
|
"client",
|
2018-01-25 13:01:13 -05:00
|
|
|
"test1",
|
|
|
|
"test2",
|
|
|
|
"test3",
|
|
|
|
"test4",
|
|
|
|
"test5",
|
|
|
|
"test6"
|
2017-05-15 16:22:03 -04:00
|
|
|
]
|
|
|
|
}
|