44 lines
916 B
JSON
44 lines
916 B
JSON
{
|
|
"exclude": [
|
|
".git",
|
|
"node_modules",
|
|
"app/static",
|
|
"app/web/static",
|
|
],
|
|
"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": {
|
|
"dir": [
|
|
"./pkgs/core/utils/dir.ts"
|
|
],
|
|
"dbgen": [
|
|
"./node_modules/.prisma/client/index.d.ts"
|
|
],
|
|
"service-srv": [
|
|
"./pkgs/core/server/api/api-ctx.ts"
|
|
],
|
|
"utils/*": [
|
|
"./pkgs/core/utils/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"bun-types" // add Bun global
|
|
],
|
|
},
|
|
} |