25 lines
593 B
JSON
25 lines
593 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2021",
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"allowImportingTsExtensions": false,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"jsxImportSource": "preact",
|
||
|
|
"strict": true,
|
||
|
|
"types": ["vite/client"],
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src"],
|
||
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
||
|
|
}
|