hknsh-house/tsconfig.json

24 lines
473 B
JSON
Raw Permalink Normal View History

2024-11-10 17:25:53 +00:00
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"allowJs": true,
"checkJs": true,
/* Preact Config */
"jsx": "react-jsx",
"jsxImportSource": "preact",
"skipLibCheck": true,
"paths": {
"react": ["./node_modules/preact/compat/"],
"react-dom": ["./node_modules/preact/compat/"],
"@/*": ["./src/*"]
},
"baseUrl": "."
},
"include": ["node_modules/vite/client.d.ts", "**/*"]
}