18 lines
303 B
JSON
18 lines
303 B
JSON
{
|
|
"extends": "../../shared/tsconfig.node.json",
|
|
"compilerOptions": {
|
|
"types": ["jest", "node"],
|
|
"verbatimModuleSyntax": false,
|
|
"outDir": "./built",
|
|
"paths": {
|
|
"@/*": ["../src/*"]
|
|
},
|
|
"typeRoots": [
|
|
"../node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"daemon.ts",
|
|
"./test/**/*.ts"
|
|
]
|
|
}
|