2024-04-19 14:53:50 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"inlineSources": true,
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"target": "ES6",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"moduleResolution": "node",
|
2024-11-04 18:56:56 +00:00
|
|
|
"importHelpers": false,
|
2024-04-19 14:53:50 +00:00
|
|
|
"isolatedModules": true,
|
2024-05-03 20:33:19 +00:00
|
|
|
"skipLibCheck": true,
|
2025-01-29 22:36:19 +00:00
|
|
|
"resolveJsonModule": true,
|
2026-03-22 18:01:03 +00:00
|
|
|
"strict": false,
|
2025-01-15 20:12:03 +00:00
|
|
|
"types": [
|
|
|
|
|
"jest"
|
|
|
|
|
],
|
|
|
|
|
"strictNullChecks": true,
|
2024-04-19 14:53:50 +00:00
|
|
|
"lib": [
|
|
|
|
|
"DOM",
|
|
|
|
|
"ES5",
|
|
|
|
|
"ES6",
|
|
|
|
|
"ES7"
|
2024-09-01 13:01:54 +00:00
|
|
|
],
|
2025-08-10 08:34:54 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
// "strict": true
|
2024-04-19 14:53:50 +00:00
|
|
|
},
|
|
|
|
|
"include": [
|
2025-03-19 11:35:38 +00:00
|
|
|
"**/*.ts"]
|
2025-01-15 20:12:03 +00:00
|
|
|
}
|