mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 17:30:31 +00:00
27 lines
843 B
JSON
27 lines
843 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"ignoreDeprecations": "6.0",
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitOverride": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
"types": ["node", "vitest"],
|
|
"lib": ["ES2022", "DOM"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "tests/**/*.ts", "tests/**/*.tsx", "vitest.config.ts"]
|
|
}
|