mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
59 lines
1.2 KiB
JSON
59 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "Bundler",
|
|
"module": "ES2022",
|
|
"target": "ES2020",
|
|
"declaration": false,
|
|
"sourceMap": true,
|
|
"outDir": "./build",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"resolveJsonModule": true,
|
|
"lib": ["ES2022"],
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"types": [
|
|
"@types/archiver",
|
|
"@types/better-sqlite3",
|
|
"@types/cls-hooked",
|
|
"@types/compression",
|
|
"@types/cookie-parser",
|
|
"@types/csurf",
|
|
"@types/debounce",
|
|
"@types/ejs",
|
|
"@types/escape-html",
|
|
"@types/express",
|
|
"@types/express-session",
|
|
"@types/html",
|
|
"@types/ini",
|
|
"@types/jasmine",
|
|
"@types/jsdom",
|
|
"@types/mime-types",
|
|
"@types/multer",
|
|
"@types/safe-compare",
|
|
"@types/sanitize-html",
|
|
"@types/sax",
|
|
"@types/semver",
|
|
"@types/serve-favicon",
|
|
"@types/session-file-store",
|
|
"@types/stream-throttle",
|
|
"@types/tmp",
|
|
"@types/turndown",
|
|
"@types/ws",
|
|
"@types/xml2js"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*.js",
|
|
"./src/**/*.ts",
|
|
"./*.ts",
|
|
"./spec/**/*.ts",
|
|
"./spec-es6/**/*.ts"
|
|
],
|
|
"exclude": ["./node_modules/**/*"],
|
|
"files": [
|
|
"src/types.d.ts"
|
|
]
|
|
}
|