21 lines
344 B
JSON
21 lines
344 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "../logger" },
|
|
{ "path": "../types" }
|
|
]
|
|
}
|