22 lines
299 B
JSON
22 lines
299 B
JSON
|
|
{
|
||
|
|
"extends": "../core/tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"rootDir": "./src",
|
||
|
|
"outDir": "./bin"
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"bin",
|
||
|
|
"**/*.test.ts",
|
||
|
|
"**/*.spec.ts"
|
||
|
|
],
|
||
|
|
"references": [
|
||
|
|
{
|
||
|
|
"path": "../core"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|