32 lines
672 B
JSON
32 lines
672 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"outDir": "build",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"rootDir": ".", // Set rootDir to encompass both src and tests
|
|
"lib": [
|
|
"ES2020" // Removed "DOM" as it's likely unused in a Node.js server
|
|
],
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"**/*.test.ts"
|
|
]
|
|
// Remove project reference
|
|
}
|