23 lines
443 B
JSON
23 lines
443 B
JSON
{
|
|
"extends": "../../shared/tsconfig.node.jsonc",
|
|
"compilerOptions": {
|
|
// Checking
|
|
"types": ["jest", "node"],
|
|
"verbatimModuleSyntax": false,
|
|
"noImplicitOverride": false,
|
|
"noImplicitAny": false,
|
|
"strictFunctionTypes": false,
|
|
"strictPropertyInitialization": false,
|
|
"paths": {
|
|
"@/*": ["../src/*"]
|
|
},
|
|
|
|
// Output
|
|
"outDir": "./built"
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
"../src/**/*.test.ts",
|
|
"../src/@types/**/*.ts"
|
|
]
|
|
}
|