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",
|
2019-04-08 16:09:35 +02:00
|
|
|
"es7",
|
|
|
|
"DOM"
|
2018-09-25 08:30:54 +02:00
|
|
|
],
|
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,
|
|
|
|
"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",
|
2019-03-13 13:22:20 +01:00
|
|
|
"**/*.test.ts",
|
|
|
|
"src/examples"
|
2018-09-25 08:30:54 +02:00
|
|
|
]
|
2018-09-25 09:14:01 +02:00
|
|
|
}
|