mirror of
https://github.com/zadam/trilium.git
synced 2025-10-19 22:58:52 +02:00
20 lines
465 B
JSON
20 lines
465 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
/* 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", "**/*"],
|
|
"exclude": ["dist"]
|
|
}
|