backend/tsconfig.json
creations 00a7417936
Some checks failed
Code quality checks / biome (push) Failing after 13s
move environment to src/environment add smtp env vars, move some other items
2025-06-10 15:16:31 -04:00

28 lines
691 B
JSON

{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"#*": ["src/*"],
"#types/*": ["types/*"]
},
"typeRoots": ["./node_modules/@types"],
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"allowJs": false,
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": false
},
"include": ["src", "environment"]
}