hyperdx/packages/api/tsconfig.json
Warren 6ee29abe02
feat: introduce common-utils package (#554)
- copy and paste the utils to a separate dir
- setup building + CD
2025-01-16 18:15:22 +00:00

28 lines
703 B
JSON

{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
},
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": ["ES2022", "dom"],
"module": "Node16",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitThis": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"outDir": "build",
"skipLibCheck": false,
"sourceMap": true,
"strict": true,
"target": "ES2022"
},
"include": ["src", "migrations"]
}