Files
devhub/packages/web/tsconfig.json
Bruno Lemos c2819b55e4 Run tsc before cra build
This should not be necessary, something is wrong. But without this, I was getting unknown module @devhub/core
2018-12-16 21:48:18 -02:00

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"
}
]
}