2019-10-30 15:02:03 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"strict": 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": [
|
2019-11-04 22:09:42 +01:00
|
|
|
"**/src/**/*.ts"
|
2019-11-04 17:06:31 +01:00
|
|
|
],
|
2019-10-30 15:02:03 +01:00
|
|
|
"exclude": [
|
2020-04-03 13:19:43 +02:00
|
|
|
"node_modules"
|
2019-10-30 15:02:03 +01:00
|
|
|
]
|
2019-10-31 17:35:18 +01:00
|
|
|
}
|