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

this will allow for cleaner separation -> build for the output from the build stage (i.e. TS/Webpack + asset copying) and dist for the archive format of the build folder
25 lines
549 B
JSON
25 lines
549 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/**/*.ts", "./src/**/*.js", "./*.ts"],
|
|
"exclude": [
|
|
"./**/*.spec.ts",
|
|
"./src/public/**/*",
|
|
"./*.config.ts",
|
|
],
|
|
"files": ["src/types.d.ts"]
|
|
}
|