@mkvlrn/config 3.1.2 → 3.1.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/package.json +2 -2
- package/src/biome.jsonc +2 -6
- package/src/tsconfig.json +4 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mkvlrn/config",
|
|
3
3
|
"description": "Opinionated configurations for biome and typescript",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.4",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": "Mike Valeriano <mkvlrn@gmail.com>",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"./tsconfig": "./src/tsconfig.json"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"lint-staged": "^16.3.
|
|
26
|
+
"lint-staged": "^16.3.2"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/src/biome.jsonc
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.4.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
|
|
3
3
|
"root": false,
|
|
4
4
|
"assist": {
|
|
5
5
|
"enabled": true,
|
|
@@ -67,11 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"correctness": {
|
|
69
69
|
// path alias already uses ts extensions
|
|
70
|
-
"useImportExtensions": "off"
|
|
71
|
-
// TODO: check on new versions
|
|
72
|
-
// biome 2.4 seems to have broken this for node imports, using the ts check for now
|
|
73
|
-
// still present in 2.4.2
|
|
74
|
-
"noUnresolvedImports": "off"
|
|
70
|
+
"useImportExtensions": "off"
|
|
75
71
|
},
|
|
76
72
|
"style": {
|
|
77
73
|
// this is a silly rule
|
package/src/tsconfig.json
CHANGED
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
// esm
|
|
21
21
|
"esModuleInterop": true,
|
|
22
22
|
"isolatedModules": true,
|
|
23
|
-
"lib": ["ESNext"
|
|
24
|
-
"module": "
|
|
25
|
-
"moduleResolution": "
|
|
23
|
+
"lib": ["ESNext"],
|
|
24
|
+
"module": "esnext",
|
|
25
|
+
"moduleResolution": "bundler",
|
|
26
26
|
"moduleDetection": "force",
|
|
27
27
|
"target": "esnext",
|
|
28
28
|
// no comments by default
|
|
@@ -39,6 +39,6 @@
|
|
|
39
39
|
// react
|
|
40
40
|
"jsx": "react-jsx",
|
|
41
41
|
// default is empty now, so any type packages are allowed
|
|
42
|
-
"types": ["
|
|
42
|
+
"types": ["node"]
|
|
43
43
|
}
|
|
44
44
|
}
|