Files
Trilium/apps/website/tsconfig.json

24 lines
520 B
JSON
Raw Normal View History

{
2025-09-27 22:36:26 +03:00
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
2025-09-27 01:42:15 +03:00
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
/* Preact Config */
"jsx": "react-jsx",
"jsxImportSource": "preact",
"skipLibCheck": true,
2025-10-27 18:19:35 +02:00
"types": [
2025-11-04 08:55:05 +02:00
"vite/client",
"vitest/config"
2025-10-27 18:19:35 +02:00
],
2025-09-27 01:42:15 +03:00
"paths": {
"react": ["../../node_modules/preact/compat/"],
"react-dom": ["../../node_modules/preact/compat/"]
2025-09-27 01:42:15 +03:00
}
},
2025-09-27 22:36:26 +03:00
"include": ["node_modules/vite/client.d.ts", "**/*"],
"exclude": ["dist"]
}