@build-script/single-dog-asset 1.0.33 → 1.0.34
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/biome.jsonc +17 -17
- package/package/standalone/bin.mjs +1 -1
- package/package/standalone/tsconfig-template.json +1 -1
- package/package/tsconfig.cjs.json +2 -2
- package/package/tsconfig.json +4 -9
- package/package/tsconfig.legacy.json +2 -2
- package/package/vscode/extensions.json +2 -2
- package/package/vscode/settings.json +1 -1
- package/package.json +1 -1
package/package/biome.jsonc
CHANGED
|
@@ -3,54 +3,54 @@
|
|
|
3
3
|
"vcs": {
|
|
4
4
|
"enabled": false,
|
|
5
5
|
"clientKind": "git",
|
|
6
|
-
"useIgnoreFile": true
|
|
6
|
+
"useIgnoreFile": true,
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"ignoreUnknown": true,
|
|
10
|
-
"ignore": ["local-history", ".nx", "lib", "node_modules"]
|
|
10
|
+
"ignore": ["local-history", ".nx", "lib", "node_modules"],
|
|
11
11
|
},
|
|
12
12
|
"formatter": {
|
|
13
13
|
"enabled": true,
|
|
14
14
|
"indentStyle": "tab",
|
|
15
15
|
"formatWithErrors": true,
|
|
16
16
|
"lineEnding": "lf",
|
|
17
|
-
"lineWidth": 120
|
|
17
|
+
"lineWidth": 120,
|
|
18
18
|
},
|
|
19
19
|
"organizeImports": {
|
|
20
|
-
"enabled": false
|
|
20
|
+
"enabled": false,
|
|
21
21
|
},
|
|
22
22
|
"linter": {
|
|
23
23
|
"enabled": false,
|
|
24
24
|
"rules": {
|
|
25
|
-
"recommended": true
|
|
26
|
-
}
|
|
25
|
+
"recommended": true,
|
|
26
|
+
},
|
|
27
27
|
},
|
|
28
28
|
"javascript": {
|
|
29
29
|
"formatter": {
|
|
30
30
|
"quoteStyle": "double",
|
|
31
|
-
"trailingCommas": "es5"
|
|
32
|
-
}
|
|
31
|
+
"trailingCommas": "es5",
|
|
32
|
+
},
|
|
33
33
|
},
|
|
34
34
|
"json": {
|
|
35
35
|
"parser": {
|
|
36
|
-
"allowTrailingCommas": true
|
|
36
|
+
"allowTrailingCommas": true,
|
|
37
37
|
},
|
|
38
38
|
"formatter": {
|
|
39
|
-
"trailingCommas": "none"
|
|
40
|
-
}
|
|
39
|
+
"trailingCommas": "none",
|
|
40
|
+
},
|
|
41
41
|
},
|
|
42
42
|
"overrides": [
|
|
43
43
|
{
|
|
44
44
|
"include": ["*.ts"],
|
|
45
|
-
"organizeImports": { "enabled": false }
|
|
45
|
+
"organizeImports": { "enabled": false },
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
"include": ["tsconfig.json", "tsconfig.*.json", ".vscode/*.json"],
|
|
49
49
|
"json": {
|
|
50
50
|
"formatter": {
|
|
51
|
-
"trailingCommas": "all"
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
]
|
|
51
|
+
"trailingCommas": "all",
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
],
|
|
56
56
|
}
|
package/package/tsconfig.json
CHANGED
|
@@ -35,9 +35,7 @@
|
|
|
35
35
|
"inlineSources": false,
|
|
36
36
|
"isolatedModules": false,
|
|
37
37
|
"keyofStringsOnly": false,
|
|
38
|
-
"lib": [
|
|
39
|
-
"ESNext",
|
|
40
|
-
],
|
|
38
|
+
"lib": ["ESNext"],
|
|
41
39
|
"noImplicitThis": true,
|
|
42
40
|
"noImplicitAny": true,
|
|
43
41
|
"noImplicitOverride": true,
|
|
@@ -50,10 +48,7 @@
|
|
|
50
48
|
"useUnknownInCatchVariables": true,
|
|
51
49
|
"preserveConstEnums": true,
|
|
52
50
|
"pretty": true,
|
|
53
|
-
"typeRoots": [
|
|
54
|
-
"../node_modules/@types",
|
|
55
|
-
"../node_modules"
|
|
56
|
-
],
|
|
51
|
+
"typeRoots": ["../node_modules/@types", "../node_modules"],
|
|
57
52
|
"types": [],
|
|
58
53
|
"removeComments": false,
|
|
59
54
|
"sourceMap": true,
|
|
@@ -69,6 +64,6 @@
|
|
|
69
64
|
"noFallthroughCasesInSwitch": true,
|
|
70
65
|
"incremental": true,
|
|
71
66
|
"jsxImportSource": "react",
|
|
72
|
-
"jsx": "react-jsx"
|
|
73
|
-
}
|
|
67
|
+
"jsx": "react-jsx",
|
|
68
|
+
},
|
|
74
69
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"EditorConfig.EditorConfig",
|
|
7
7
|
"esbenp.prettier-vscode",
|
|
8
8
|
"xyz.local-history",
|
|
9
|
-
"rbuckton.tsserver-live-reload"
|
|
9
|
+
"rbuckton.tsserver-live-reload"
|
|
10
10
|
],
|
|
11
11
|
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
|
|
12
12
|
"unwantedRecommendations": [
|
|
@@ -14,6 +14,6 @@
|
|
|
14
14
|
"ms-mssql.mssql",
|
|
15
15
|
"firefox-devtools.vscode-firefox-debug",
|
|
16
16
|
"ms-azuretools.vscode-docker",
|
|
17
|
-
"christian-kohler.npm-intellisense"
|
|
17
|
+
"christian-kohler.npm-intellisense"
|
|
18
18
|
]
|
|
19
19
|
}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"**/*.api.json": true,
|
|
11
11
|
"**/*.api.md": true,
|
|
12
12
|
"**/package-public.d.ts": true,
|
|
13
|
-
"pnpm-lock.yaml": true
|
|
13
|
+
"pnpm-lock.yaml": true
|
|
14
14
|
},
|
|
15
15
|
"prettier.prettierPath": "common/autoinstallers/rush-prettier/node_modules/prettier",
|
|
16
16
|
"prettier.requireConfig": true,
|