2024-04-27 10:40:14 +02:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
|
"checkJs": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
|
|
|
"module": "ES2022",
|
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
2024-11-17 17:51:20 +01:00
|
|
|
"target": "ES2020"
|
2024-04-27 10:40:14 +02:00
|
|
|
},
|
|
|
|
|
"include": [".eslintrc.cjs", "prettier.config.js"],
|
2024-04-28 10:46:45 +02:00
|
|
|
"exclude": ["node_modules"]
|
2024-04-27 10:40:14 +02:00
|
|
|
}
|