16 lines
353 B
JSON
16 lines
353 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"incremental": false,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noEmit": false,
|
|
"outDir": ".test-output",
|
|
"rootDir": ".",
|
|
"types": ["node"],
|
|
"verbatimModuleSyntax": false
|
|
},
|
|
"include": ["lib/**/*.ts", "tests/**/*.test.ts"]
|
|
}
|