38 lines
816 B
JSON
38 lines
816 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"checkJs": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"ignoreDeprecations": "6.0",
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"$lib/*": ["src/lib/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "ES2022",
|
|
"types": ["node", "bun-types", "react", "react-dom"]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"tests/**/*.ts",
|
|
"vite.config.ts",
|
|
"playwright.config.ts",
|
|
"drizzle.config.ts"
|
|
],
|
|
"exclude": [
|
|
"build",
|
|
"node_modules",
|
|
".storybook",
|
|
".svelte-kit",
|
|
"src/routes/**",
|
|
"src/lib/ui/stories/*.svelte"
|
|
]
|
|
}
|