mirror of
https://github.com/zadam/trilium.git
synced 2026-04-03 10:39:00 +02:00
- Remove deprecated `downlevelIteration` from tsconfig.base.json (not needed for ES2022+ target) - Add `noUncheckedSideEffectImports: false` to tsconfig.base.json and ckeditor5 package tsconfigs to allow CSS/plugin side-effect imports - Remove deprecated `baseUrl: "."` from 6 package tsconfig.lib.json files (unused without `paths`) - Replace `NodeJS.Timeout` with `ReturnType<typeof setTimeout>` in debounce.ts Agent-Logs-Url: https://github.com/TriliumNext/Trilium/sessions/8e861e56-2be6-4c61-9558-a666abbe3ff0 Co-authored-by: eliandoran <21236836+eliandoran@users.noreply.github.com>
39 lines
796 B
JSON
39 lines
796 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"tsBuildInfoFile": "dist/tsconfig.lib.tsbuildinfo",
|
|
"emitDeclarationOnly": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"types": [
|
|
"node",
|
|
"vite/client"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../commons/tsconfig.lib.json"
|
|
}
|
|
],
|
|
"exclude": [
|
|
"vite.config.ts",
|
|
"vite.config.mts",
|
|
"vitest.config.ts",
|
|
"vitest.config.mts",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.test.tsx",
|
|
"src/**/*.spec.tsx",
|
|
"src/**/*.test.js",
|
|
"src/**/*.spec.js",
|
|
"src/**/*.test.jsx",
|
|
"src/**/*.spec.jsx"
|
|
]
|
|
}
|