b8c3cba878
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 lines
487 B
JSON
19 lines
487 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["node", "vitest/globals"],
|
|
"paths": { "@shared/*": ["./shared/*"] },
|
|
"baseUrl": "."
|
|
},
|
|
"include": ["server", "client", "shared", "*.ts"]
|
|
}
|