mirror of
https://github.com/zadam/trilium.git
synced 2025-12-26 18:19:57 +01:00
19 lines
423 B
JSON
19 lines
423 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"declaration": false,
|
|
"sourceMap": true,
|
|
"outDir": "./build",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"resolveJsonModule": true,
|
|
"lib": ["ES2022"],
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true
|
|
},
|
|
"include": ["./src/public/app/**/*"],
|
|
"files": ["./src/public/app/types.d.ts"]
|
|
}
|