hedgedoc/database/tsconfig.base.json
Erik Michelson ae78204965
refactor(database): run knex migrations on startup
Co-authored-by: Philip Molares <philip.molares@udo.edu>
Signed-off-by: Philip Molares <philip.molares@udo.edu>
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
2025-09-26 23:22:32 +02:00

22 lines
477 B
JSON

{
"compilerOptions": {
"removeComments": true,
"preserveConstEnums": true,
"lib": [
"es2022",
"dom"
],
"declaration": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"allowJs": true,
"declarationMap":true,
"sourceMap": true,
"typeRoots": ["./types"]
},
"include": ["./src", "./types"],
"exclude": ["./dist", "**/*.test.ts"]
}