mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 01:52:28 +08:00

; Conflicts: ; package-lock.json ; package.json ; src/public/app/components/app_context.ts ; src/public/app/services/hoisted_note.ts ; src/public/app/services/open.ts ; src/public/app/services/toast.ts
29 lines
546 B
JSON
29 lines
546 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/**/*.js",
|
|
"./src/**/*.ts",
|
|
"./*.ts",
|
|
"./spec/**/*.ts",
|
|
"./spec-es6/**/*.ts"
|
|
],
|
|
"exclude": ["./node_modules/**/*"],
|
|
"files": [
|
|
"src/types.d.ts",
|
|
"src/public/app/types.d.ts"
|
|
]
|
|
}
|