package.jsons are changed because dependencies are now sorted tsconfig.jsons are changed because all referenced monorepo packages will be added as project references tsconfig.esm.jsons are changed because syncEsmConfig was run
39 lines
603 B
JSON
39 lines
603 B
JSON
{
|
|
"extends": "../tsconfig.common.json",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src"
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../common"
|
|
},
|
|
{
|
|
"path": "../http-client"
|
|
},
|
|
{
|
|
"path": "../http-types"
|
|
},
|
|
{
|
|
"path": "../jsonrpc"
|
|
},
|
|
{
|
|
"path": "../redux"
|
|
},
|
|
{
|
|
"path": "../jsonrpc"
|
|
},
|
|
{
|
|
"path": "../test-utils"
|
|
}
|
|
],
|
|
"plugins": [
|
|
{
|
|
"transform": "typescript-plugin-styled-components",
|
|
"type": "config",
|
|
"displayName": true,
|
|
"minify": false,
|
|
"ssr": true
|
|
}
|
|
]
|
|
} |