mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-06-10 23:39:22 +08:00
This should not be necessary, something is wrong. But without this, I was getting unknown module @devhub/core
31 lines
518 B
JSON
31 lines
518 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"noEmit": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"typeRoots": [
|
|
"../../@types",
|
|
"../../node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/index.tsx"
|
|
],
|
|
"exclude": [
|
|
"src/setupProxy.js"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../core"
|
|
},
|
|
{
|
|
"path": "../components"
|
|
}
|
|
]
|
|
}
|