mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 01:52:28 +08:00
21 lines
570 B
JSON
21 lines
570 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"declaration": false,
|
|
"sourceMap": true,
|
|
"outDir": "./build",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"lib": ["ES2023"],
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["./src/**/*.js", "./src/**/*.ts", "./*.ts", "./spec/**/*.ts"],
|
|
"exclude": ["./node_modules/**/*", "./spec-es6/**/*.ts"],
|
|
"files": ["src/types.d.ts", "src/public/app/types.d.ts"]
|
|
}
|