2020-10-25 21:55:59 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"inlineSources": true,
|
2020-10-26 16:58:14 +01:00
|
|
|
"module": "ESNext",
|
2021-10-19 19:34:19 +02:00
|
|
|
"target": "ES6",
|
2020-10-25 21:55:59 +01:00
|
|
|
"allowJs": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"moduleResolution": "node",
|
2020-10-26 16:58:14 +01:00
|
|
|
"importHelpers": true,
|
2022-01-16 16:07:19 +01:00
|
|
|
"isolatedModules": true,
|
2020-10-25 21:55:59 +01:00
|
|
|
"lib": [
|
2021-11-07 00:05:49 +01:00
|
|
|
"DOM",
|
|
|
|
|
"ES5",
|
|
|
|
|
"ES6",
|
|
|
|
|
"ES7"
|
2020-10-25 21:55:59 +01:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"**/*.ts"
|
|
|
|
|
]
|
|
|
|
|
}
|