Commit 5509eea8 authored by lianahus's avatar lianahus

fixed config structior for plugin manager component

parent 5dc5e292
...@@ -781,12 +781,22 @@ ...@@ -781,12 +781,22 @@
"remix-ui-plugin-manager": { "remix-ui-plugin-manager": {
"root": "libs/remix-ui/plugin-manager", "root": "libs/remix-ui/plugin-manager",
"sourceRoot": "libs/remix-ui/plugin-manager/src", "sourceRoot": "libs/remix-ui/plugin-manager/src",
"tsConfig": ["libs/remix-ui/plugin-manager/tsconfig.lib.json"], "projectType": "library",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"tsConfig": ["libs/remix-ui/plugin-manager/tsconfig.lib.json"],
"exclude": [ "exclude": [
"**/node_modules/**", "**/node_modules/**",
"!libs/remix-ui/plugin-manager/**/*" "!libs/remix-ui/plugin-manager/**/*"
] ]
}, }
}
}
},
"remix-core-plugin": { "remix-core-plugin": {
"root": "libs/remix-core-plugin", "root": "libs/remix-core-plugin",
"sourceRoot": "libs/remix-core-plugin/src", "sourceRoot": "libs/remix-core-plugin/src",
...@@ -797,13 +807,8 @@ ...@@ -797,13 +807,8 @@
"builder": "@nrwl/linter:lint", "builder": "@nrwl/linter:lint",
"options": { "options": {
"linter": "eslint", "linter": "eslint",
"tsConfig": [ "tsConfig": ["libs/remix-core-plugin/tsconfig.lib.json"],
"libs/remix-core-plugin/tsconfig.lib.json" "exclude": ["**/node_modules/**", "!libs/remix-core-plugin/**/*"]
],
"exclude": [
"**/node_modules/**",
"!libs/remix-core-plugin/**/*"
]
} }
}, },
"build": { "build": {
...@@ -868,7 +873,6 @@ ...@@ -868,7 +873,6 @@
"tsConfig": ["libs/remix-ui/renderer/tsconfig.lib.json"], "tsConfig": ["libs/remix-ui/renderer/tsconfig.lib.json"],
"exclude": ["**/node_modules/**", "!libs/remix-ui/renderer/**/*"] "exclude": ["**/node_modules/**", "!libs/remix-ui/renderer/**/*"]
} }
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment