Files
Compass/backend/api/tsconfig.json
2025-10-25 04:10:32 +02:00

58 lines
1.1 KiB
JSON

{
"compilerOptions": {
"rootDir": "src",
"composite": true,
"module": "commonjs",
"noImplicitReturns": true,
"outDir": "./lib",
"tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"sourceMap": true,
"strict": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "esnext",
"skipLibCheck": true,
"jsx": "react-jsx",
"paths": {
"common/*": [
"../../common/src/*",
"../../../common/lib/*"
],
"shared/*": [
"../shared/src/*",
"../../shared/lib/*"
],
"email/*": [
"../email/emails/*",
"../../email/lib/*"
],
"api/*": [
"./src/*"
]
}
},
"ts-node": {
"require": [
"tsconfig-paths/register"
]
},
"references": [
{
"path": "../../common"
},
{
"path": "../shared"
},
{
"path": "../email"
}
],
"compileOnSave": true,
"include": [
"src/**/*.ts",
"package.json",
"backend/api/package.json"
]
}