logseq-timetracker/tsconfig.json
2026-06-26 10:04:47 +02:00

22 lines
355 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"types": [
"@logseq/libs"
],
"lib": [
"ES2020",
"DOM"
]
},
"include": [
"src"
]
}