2021-05-12 00:28:24 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-10-19 20:32:13 +01:00
|
|
|
"skipLibCheck": true,
|
2021-05-12 00:28:24 +01:00
|
|
|
"allowUmdGlobalAccess": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"declaration": true,
|
|
|
|
"emitDeclarationOnly": true,
|
2023-08-02 17:57:57 +01:00
|
|
|
"module": "es2020",
|
2021-05-12 00:28:24 +01:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"target": "es6",
|
|
|
|
"jsx": "preserve",
|
|
|
|
"allowJs": true,
|
2024-09-28 15:47:45 +01:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es5",
|
|
|
|
"es2015",
|
|
|
|
"es2016",
|
|
|
|
"es2017",
|
|
|
|
"es2018",
|
|
|
|
"es2019.array",
|
|
|
|
"es2020"
|
|
|
|
],
|
2021-05-12 00:28:24 +01:00
|
|
|
"allowSyntheticDefaultImports": true
|
|
|
|
}
|
|
|
|
}
|