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",
|
2019-06-20 00:20:09 +02:00
|
|
|
"lib": ["es2017", "es6", "es7", "dom"],
|
2018-09-26 16:58:11 +02:00
|
|
|
"declaration": true,
|
2018-09-25 08:30:54 +02:00
|
|
|
"module": "commonjs",
|
2019-03-19 14:27:28 +01:00
|
|
|
"target": "es5",
|
2018-09-25 08:30:54 +02:00
|
|
|
"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,
|
2019-06-20 00:20:09 +02:00
|
|
|
"typeRoots": ["node_modules/@types"]
|
2018-09-25 08:30:54 +02:00
|
|
|
},
|
2019-06-20 00:20:09 +02:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
2018-09-25 09:14:01 +02:00
|
|
|
}
|