2018-09-25 08:30:54 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-10-04 13:13:24 +02:00
|
|
|
"resolveJsonModule": true,
|
2018-11-21 16:46:03 +01:00
|
|
|
"moduleResolution": "node",
|
2018-09-25 08:30:54 +02:00
|
|
|
"lib": [
|
2019-03-01 13:24:04 +01:00
|
|
|
"es2017",
|
2018-09-25 08:30:54 +02:00
|
|
|
"es6",
|
|
|
|
"es7"
|
|
|
|
],
|
2018-09-26 16:58:11 +02:00
|
|
|
"declaration": true,
|
2018-09-25 08:30:54 +02:00
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": true,
|
2019-01-15 11:34:45 +01:00
|
|
|
"experimentalDecorators": true,
|
2018-09-25 08:30:54 +02:00
|
|
|
"preserveConstEnums": true,
|
2018-11-26 15:55:09 +01:00
|
|
|
"outDir": "./dist/node/",
|
2018-09-25 08:30:54 +02:00
|
|
|
"rootDir": "./src/",
|
2019-01-09 15:43:33 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
2018-09-25 08:30:54 +02:00
|
|
|
},
|
|
|
|
"include": [
|
2018-10-11 14:24:22 +02:00
|
|
|
"src/**/*"
|
2018-09-25 08:30:54 +02:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2018-10-01 18:10:26 +02:00
|
|
|
"**/*.test.ts"
|
2018-09-25 08:30:54 +02:00
|
|
|
]
|
2018-09-25 09:14:01 +02:00
|
|
|
}
|