@modern-js/mwa-generator 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -272071,6 +272071,7 @@ const INTERNAL_PLUGINS = {
272071
272071
  cli: '@modern-js/plugin-static-hosting/cli'
272072
272072
  },
272073
272073
  '@modern-js/plugin-polyfill': {
272074
+ cli: '@modern-js/plugin-polyfill/cli',
272074
272075
  server: '@modern-js/plugin-polyfill'
272075
272076
  },
272076
272077
  '@modern-js/plugin-multiprocess': {
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.3.0",
14
+ "version": "1.3.1",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "main": "./dist/js/node/main.js",
17
17
  "files": [
@@ -4,7 +4,10 @@
4
4
  "declaration": false,
5
5
  "jsx": "preserve",
6
6
  "baseUrl": "./",
7
- "paths": {}
7
+ "paths": {
8
+ "@/*": ["./src/*"],
9
+ "@shared/*": ["./shared/*"]
10
+ }
8
11
  },
9
- "include": ["src"]
12
+ "include": ["src", "shared", "config"]
10
13
  }