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