30 lines
769 B
JSON
30 lines
769 B
JSON
{
|
|
"include": [
|
|
"**/*",
|
|
"**/.server/**/*",
|
|
"**/.client/**/*",
|
|
".react-router/types/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2024"],
|
|
"types": ["node", "vite/client"],
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"rootDirs": [".", "./.react-router/types"],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@code/primitives": ["../../packages/primitives/src/index.ts"],
|
|
"@code/primitives/*": ["../../packages/primitives/src/*"],
|
|
"@code/ui/*": ["../../packages/ui/src/*"]
|
|
},
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true
|
|
}
|
|
}
|