@aiou/eslint-config 1.5.0 → 1.5.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.
package/dist/index.cjs CHANGED
@@ -1009,7 +1009,8 @@ const jsonc = () => {
1009
1009
  {
1010
1010
  pathPattern: "^exports.*$",
1011
1011
  // According to webpack, default condition should be last item
1012
- order: ["import", "require", "types", "node", "browser", "default"]
1012
+ // Typescript bugs: types should be first one
1013
+ order: ["types", "import", "require", "node", "browser", "default"]
1013
1014
  },
1014
1015
  {
1015
1016
  order: { type: "asc" },
package/dist/index.mjs CHANGED
@@ -1007,7 +1007,8 @@ const jsonc = () => {
1007
1007
  {
1008
1008
  pathPattern: "^exports.*$",
1009
1009
  // According to webpack, default condition should be last item
1010
- order: ["import", "require", "types", "node", "browser", "default"]
1010
+ // Typescript bugs: types should be first one
1011
+ order: ["types", "import", "require", "node", "browser", "default"]
1011
1012
  },
1012
1013
  {
1013
1014
  order: { type: "asc" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiou/eslint-config",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "eslint config for aiou template",
5
5
  "keywords": [],
6
6
  "license": "MIT",