Files
docmost_custom/apps/server/tsconfig.json
T

29 lines
765 B
JSON
Raw Normal View History

2023-08-03 17:04:35 +01:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
2024-03-16 22:58:12 +00:00
"noFallthroughCasesInSwitch": false,
2024-03-29 01:46:11 +00:00
"strict": true,
2024-05-02 03:12:40 +01:00
"jsx": "react",
2024-03-29 01:46:11 +00:00
"paths": {
2024-05-18 03:19:42 +01:00
"@docmost/db/*": ["./src/database/*"],
2025-03-06 13:38:37 +00:00
"@docmost/transactional/*": ["./src/integrations/transactional/*"],
"@docmost/ee/*": ["./src/ee/*"]
2024-03-29 01:46:11 +00:00
}
2023-08-03 17:04:35 +01:00
}
}