18 lines
438 B
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"]
|
|
}
|
|
|