prasi-api/tsconfig.json

32 lines
672 B
JSON

{
"compilerOptions": {
"lib": [
"ESNext"
],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"paths": {
"service-srv": [
"./pkgs/server/api-ctx.ts"
],
"utils/*": [
"./pkgs/utils/*"
]
},
"types": [
"bun-types" // add Bun global
]
}
}