18 lines
323 B
JSON
18 lines
323 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"composite": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules", "dist", "src/**/__tests__/**", "src/**/*.test.ts"],
|
|
"references": [
|
|
{
|
|
"path": "../types"
|
|
},
|
|
{
|
|
"path": "../utils"
|
|
}
|
|
]
|
|
}
|