codex-proxy / web /tsconfig.json
icebear0828
feat: migrate dashboard to Preact + Vite
b7d4394
raw
history blame
424 Bytes
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"strict": true,
"noImplicitAny": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"include": ["src/**/*.ts", "src/**/*.tsx"]
}