2025-10-14 12:14:26 +00:00
|
|
|
{
|
2025-10-30 17:13:02 +00:00
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
|
"extends": "@tsconfig/node22/tsconfig.json",
|
2025-10-14 12:14:26 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
|
// General
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"jsxImportSource": "solid-js",
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
// Modules
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"noEmit": true,
|
2025-11-22 01:41:27 +00:00
|
|
|
"lib": ["es2023", "dom", "dom.iterable"],
|
2025-10-14 12:14:26 +00:00
|
|
|
// Type Checking & Safety
|
|
|
|
|
"strict": true,
|
2025-11-06 18:03:02 +00:00
|
|
|
"types": ["vite/client", "bun"]
|
2026-02-26 22:05:04 +00:00
|
|
|
},
|
|
|
|
|
"exclude": ["**/*.stories.*", "**/*.mdx"]
|
2025-10-14 12:14:26 +00:00
|
|
|
}
|