2022-01-03 08:43:40 +01:00
|
|
|
{
|
2025-01-21 12:01:43 +01:00
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
2022-01-03 08:43:40 +01:00
|
|
|
"compilerOptions": {
|
2025-11-03 10:58:22 +01:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"declaration": false,
|
|
|
|
|
"declarationMap": false,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2025-07-23 09:18:33 +02:00
|
|
|
"isolatedModules": true,
|
2025-11-03 10:58:22 +01:00
|
|
|
"lib": ["ES2022"],
|
2025-01-21 12:01:43 +01:00
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
2025-11-03 10:58:22 +01:00
|
|
|
"newLine": "lf",
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"pretty": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"target": "ES2022"
|
2022-01-03 08:43:40 +01:00
|
|
|
},
|
2025-01-21 12:01:43 +01:00
|
|
|
"exclude": ["__fixtures__", "__tests__", "coverage", "dist", "node_modules"],
|
|
|
|
|
"include": ["src"]
|
2022-01-03 08:43:40 +01:00
|
|
|
}
|