bp_wb/tsconfig.backend.json

18 lines
438 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": false,
"outDir": "./backend",
"rootDir": "./backend",
"module": "ESNext",
"moduleResolution": "node",
"allowImportingTsExtensions": false,
"jsx": "preserve",
"lib": ["ES2020"],
"noUnusedLocals": false,
"noUnusedParameters": false
},
"include": ["backend/**/*"],
"exclude": ["node_modules", "dist", "backend/**/*.test.ts"]
}