trilium/apps/website/tsconfig.json
2025-11-04 08:55:05 +02:00

24 lines
520 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
/* Preact Config */
"jsx": "react-jsx",
"jsxImportSource": "preact",
"skipLibCheck": true,
"types": [
"vite/client",
"vitest/config"
],
"paths": {
"react": ["../../node_modules/preact/compat/"],
"react-dom": ["../../node_modules/preact/compat/"]
}
},
"include": ["node_modules/vite/client.d.ts", "**/*"],
"exclude": ["dist"]
}