feat: remove instant from project references

This commit is contained in:
fragosti 2018-11-30 12:26:59 -08:00
parent d6ba7298d4
commit fc2055cd93
2 changed files with 7 additions and 2 deletions

View File

@ -5,7 +5,10 @@
"rootDir": "src",
"jsx": "react",
"noImplicitAny": true,
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"declaration": false,
"declarationMap": false,
"composite": false
},
"include": ["./src/**/*"]
}

View File

@ -34,7 +34,6 @@
{ "path": "./packages/dev-utils" },
{ "path": "./packages/ethereum-types" },
{ "path": "./packages/fill-scenarios" },
{ "path": "./packages/instant" },
{ "path": "./packages/json-schemas" },
{ "path": "./packages/metacoin" },
{ "path": "./packages/migrations" },
@ -57,5 +56,8 @@
// Skipping website because it requires allowJs: false and this is
// incompatible with project references.
// { "path": "./packages/website" }
// Skipping instant because it only produces a UMD bundle
// which it uses webpack to create
// { "path": "./packages/instant" },
]
}