26 lines
721 B
JSON
26 lines
721 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2022", "DOM"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"strict": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"exactOptionalPropertyTypes": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"types": ["node"]
|
||
|
|
},
|
||
|
|
"include": ["src", "tests", "vitest.config.ts", "eslint.config.js"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|