21 lines
459 B
JSON
21 lines
459 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2020",
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "bundler",
|
||
|
"noEmit": true,
|
||
|
"allowJs": true,
|
||
|
"checkJs": true,
|
||
|
"noErrorTruncation": true,
|
||
|
/* Preact Config */
|
||
|
"jsx": "react-jsx",
|
||
|
"jsxImportSource": "preact",
|
||
|
"skipLibCheck": true,
|
||
|
"paths": {
|
||
|
"react": ["./node_modules/preact/compat/"],
|
||
|
"react-dom": ["./node_modules/preact/compat/"]
|
||
|
}
|
||
|
},
|
||
|
"include": ["node_modules/vite/client.d.ts", "**/*"]
|
||
|
}
|