mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
28 lines
703 B
JSON
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"]
|
|
}
|