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