Skip to content

Commit fb936d3

Browse files
chore: fix json schema
1 parent aef1bb2 commit fb936d3

File tree

2 files changed

+5
-97
lines changed

2 files changed

+5
-97
lines changed

.cursorignore

Lines changed: 0 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +0,0 @@
1-
# Cache and temporary files
2-
**/.cache/
3-
**/.temp/
4-
**/coverage/
5-
**/dist/
6-
7-
# Documentation and config files
8-
**/*.md
9-
**/*.yaml
10-
**/*.yml
11-
**/.eslintrc*
12-
**/.prettierrc*
13-
**/.swcrc
14-
**/jest.config.*
15-
**/tsconfig.*
16-
**/*/stats.json
17-
18-
# First ignore everything
19-
*
20-
21-
# Then allow specific packages and their contents
22-
!packages/webpack-bundler-runtime/
23-
!packages/webpack-bundler-runtime/**/*
24-
!packages/sdk/
25-
!packages/sdk/**/*
26-
!packages/enhanced/
27-
!packages/enhanced/**/*
28-
29-
# Allow package.json files
30-
!package.json
31-
!packages/*/package.json
32-
!**/package.json
33-
34-
# Explicitly ignore specific packages
35-
packages/dts-plugin/
36-
packages/typescript/
37-
packages/native-*
38-
packages/core/
39-
packages/assemble-release-plan/
40-
packages/native-federation-typescript/
41-
packages/esbuild/
42-
43-
# Ignore specific directories
44-
apps/
45-
webpack/tooling/
46-
webpack/setup/
47-
webpack/test/
48-
webpack/benchmark/
49-
tools/
50-
.husky/
51-
.github/
52-
.vscode/
53-
.verdaccio/
54-
55-
!apps/manifest-demo/*.ts
56-
57-
# Ignore specific files
58-
.cursorignore
59-
jest.preset.js
60-
babel.config.json
61-
nx.json
62-
LICENSE
63-
.nxignore
64-
netlify.toml
65-
renovate.json
66-
.npmrc
67-
.cursorrules
68-
.prettierignore
69-
.editorconfig
70-
ai-lint-fix.js
71-
manifest.json
72-
typedoc.json
73-
typedoc.base.json
74-
commitlint.config.js
75-
.eslintignore
76-
commit-gen.js
77-
main.py

packages/enhanced/src/schemas/container/ModuleFederationPlugin.json

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -544,26 +544,11 @@
544544
"shared": {
545545
"$ref": "#/definitions/Shared"
546546
},
547-
"experiments": {
548-
"description": "Experimental features configuration",
549-
"type": "object",
550-
"additionalProperties": false,
551-
"properties": {
552-
"federationRuntime": {
553-
"description": "Enable asynchronous startup",
554-
"oneOf": [
555-
{
556-
"enum": [false]
557-
},
558-
{
559-
"enum": ["hoisted"]
560-
}
561-
]
562-
},
563-
"externalRuntime": {
564-
"description": "After setting true, the external MF runtime will be used and the runtime provided by the consumer will be used. (Please make sure your consumer has provideExternalRuntime: true set, otherwise it will not run properly!)",
565-
"type": "boolean",
566-
"default": false
547+
"dts": {
548+
"description": "TypeScript declaration file generation options",
549+
"anyOf": [
550+
{
551+
"type": "boolean"
567552
},
568553
{
569554
"type": "object",

0 commit comments

Comments
 (0)