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