2021-10-20 08:41:50 +02:00
|
|
|
{
|
2022-10-23 08:36:26 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"strictNullChecks": true,
|
2023-12-10 15:15:13 +01:00
|
|
|
"target": "ES2020",
|
2022-10-23 08:36:26 +02:00
|
|
|
"declaration": true,
|
|
|
|
"esModuleInterop": true,
|
2023-12-10 15:15:13 +01:00
|
|
|
"lib": ["ES6", "ESNext", "DOM"],
|
2022-10-23 08:36:26 +02:00
|
|
|
"outDir": "lib",
|
|
|
|
"checkJs": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"declarationDir": "@types",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"skipLibCheck": true
|
|
|
|
},
|
2023-12-10 15:15:13 +01:00
|
|
|
"include": ["src/**/*"],
|
2023-04-14 17:31:11 +02:00
|
|
|
"exclude": ["node_modules/**"]
|
2022-10-23 08:36:26 +02:00
|
|
|
}
|