@adamhl8/configs 0.8.2 → 0.8.4

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/biome.jsonc CHANGED
@@ -142,6 +142,13 @@
142
142
  "semicolons": "asNeeded"
143
143
  }
144
144
  },
145
+ "json": {
146
+ "formatter": {
147
+ // this is 'auto' by default, except that biome uses 'always' for package.json
148
+ // setting it to 'auto' explicitly makes it consistent across all files, including package.json
149
+ "expand": "auto"
150
+ }
151
+ },
145
152
  "assist": {
146
153
  "enabled": true,
147
154
  "actions": {
@@ -8,8 +8,10 @@
8
8
  "moduleDetection": "force",
9
9
  "isolatedModules": true,
10
10
  "verbatimModuleSyntax": true,
11
+ "esModuleInterop": false,
12
+ "allowSyntheticDefaultImports": false,
11
13
  // Need to use '.js' extensions in packages until the following issue is resolved: https://github.com/microsoft/TypeScript/issues/61991
12
- // For non-packages, we need to set 'noEmit' to true
14
+ // For non-packages, we need to set 'rewriteRelativeImportExtensions' to false and 'noEmit' to true
13
15
  "allowImportingTsExtensions": true,
14
16
  "rewriteRelativeImportExtensions": true,
15
17
  "resolveJsonModule": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adamhl8/configs",
3
- "version": "0.8.2",
3
+ "version": "0.8.4",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,9 +24,7 @@
24
24
  "types": "./dist/types/prettier.d.ts"
25
25
  }
26
26
  },
27
- "files": [
28
- "dist/"
29
- ],
27
+ "files": ["dist/"],
30
28
  "scripts": {
31
29
  "bundle": "rm -rf ./dist && bun lint && tsc && tsc-alias && cp ./configs/*.{json,jsonc} ./dist/",
32
30
  "lint": "tsc --noEmit && biome check --write",