2019-10-30 15:02:03 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-01-26 21:52:12 +00:00
|
|
|
"outDir": "dist",
|
|
|
|
"incremental": true,
|
|
|
|
"composite": true,
|
2020-06-18 22:23:39 +01:00
|
|
|
"target": "ES2018",
|
2019-10-30 15:02:03 +01:00
|
|
|
"module": "commonjs",
|
|
|
|
"strict": true,
|
2020-06-19 10:03:34 +01:00
|
|
|
"allowJs": true,
|
2020-06-19 12:49:10 +02:00
|
|
|
"sourceMap": true,
|
2020-02-06 09:51:39 +01:00
|
|
|
"resolveJsonModule": true,
|
2019-10-30 15:02:03 +01:00
|
|
|
"esModuleInterop": true,
|
2019-11-04 17:06:31 +01:00
|
|
|
"noImplicitAny": false,
|
2019-10-30 15:02:03 +01:00
|
|
|
"typeRoots": [
|
2019-11-04 22:09:42 +01:00
|
|
|
"./node_modules/@types",
|
2019-11-20 13:23:36 +01:00
|
|
|
"./src/@types"
|
2019-10-30 15:02:03 +01:00
|
|
|
]
|
|
|
|
},
|
2019-11-04 17:06:31 +01:00
|
|
|
"include": [
|
2021-01-26 21:52:12 +00:00
|
|
|
"**/test/**/*.ts",
|
2020-06-19 10:03:34 +01:00
|
|
|
"**/src/**/*.ts",
|
|
|
|
"**/src/**/*.js"
|
2019-11-04 17:06:31 +01:00
|
|
|
],
|
2019-10-30 15:02:03 +01:00
|
|
|
"exclude": [
|
2020-06-18 22:23:39 +01:00
|
|
|
"node_modules",
|
|
|
|
"dist"
|
2019-10-30 15:02:03 +01:00
|
|
|
]
|
2019-10-31 17:35:18 +01:00
|
|
|
}
|