fixes after pulling from master

pull/1344/head
joseph izang 3 years ago
parent 3b0de423fe
commit a8cc8f61ed
  1. 5
      libs/remix-ui/plugin-manager/tsconfig.json
  2. 18
      libs/remix-ui/plugin-manager/tsconfig.lib.json
  3. 15
      libs/remix-ui/plugin-manager/tsconfig.spec.json

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.json",
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"jsx": "react",
"allowJs": true,
@ -12,6 +12,9 @@
"references": [
{
"path": "./tsconfig.lib.json"
},
{
"path": "./tsconfig.spec.json"
}
]
}

@ -1,18 +1,14 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "./tsconfig.json",
"compilerOptions": {
"jsx": "react",
"composite": true,
"outDir": "../../../dist/out-tsc",
"composite": true,
"types": ["node"]
},
"files": [],
"composite": true,
"files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts"
],
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"],
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"],
"references": [
{
"path": "./tsconfig.lib.json"
}
]
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"]
}

@ -0,0 +1,15 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../../dist/out-tsc",
"module": "commonjs",
"types": ["jest", "node"]
},
"include": [
"**/*.spec.ts",
"**/*.spec.tsx",
"**/*.spec.js",
"**/*.spec.jsx",
"**/*.d.ts"
]
}
Loading…
Cancel
Save