21 lines
442 B
JSON
21 lines
442 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "./tsconfig.lib.json",
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"sourceMap": false,
|
|
"inlineSources": false,
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"outDir": "./temp/built/test/",
|
|
"rootDir": "./test/"
|
|
},
|
|
"references": [
|
|
{ "path": "./tsconfig.lib.json" }
|
|
],
|
|
"include": [
|
|
"test/**/*"
|
|
]
|
|
}
|