@10stars/config 16.1.0 → 16.2.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@10stars/config",
3
- "version": "16.1.0",
3
+ "version": "16.2.0",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "config": "./src/index.ts"
@@ -23,16 +23,15 @@
23
23
  "@10stars/oxlint-plugin-react-hooks": "^1.1.0",
24
24
  "@oxc-node/core": "0.1.0",
25
25
  "@types/bun": "^1.3.14",
26
- "@types/node": "^26.1.0",
26
+ "@types/node": "^26.1.1",
27
27
  "@types/react": "^19.2.17",
28
28
  "@types/react-dom": "^19.2.3",
29
- "@typescript/native-preview": "7.0.0-dev.20260704.1",
30
29
  "husky": "^9.1.7",
31
- "oxfmt": "0.57.0",
32
- "oxlint": "^1.72.0",
30
+ "oxfmt": "0.58.0",
31
+ "oxlint": "^1.73.0",
33
32
  "oxlint-tsgolint": "^0.24.0",
34
33
  "tsx": "^4.23.0",
35
- "type-fest": "^5.7.0",
36
- "typescript": "7.0.1-rc"
34
+ "type-fest": "^5.8.0",
35
+ "typescript": "7.0.2"
37
36
  }
38
37
  }
package/src/index.ts CHANGED
@@ -72,7 +72,7 @@ const actions = {
72
72
  },
73
73
  ts: {
74
74
  info: `Typecheck code (in watch mode)`,
75
- action: () => exec(`tsgo --project ./tsconfig.json --noEmit --watch`), // watch uses tsgo (native-preview) for the FSEvents watcher fix absent from typescript@7.0.1-rc; non-watch typecheck stays on tsc
75
+ action: () => exec(`tsc --project ./tsconfig.json --noEmit --watch`),
76
76
  },
77
77
  typecheck: {
78
78
  info: `Typecheck code (no watch)`,
@@ -9,8 +9,9 @@ const stripJsoncComments = (jsonc: string): string =>
9
9
  )
10
10
 
11
11
  const extensionsJson = {
12
- recommendations: ["oxc.oxc-vscode", "TypeScriptTeam.native-preview"],
12
+ recommendations: ["oxc.oxc-vscode"],
13
13
  unwantedRecommendations: [
14
+ "ms-vscode.vscode-typescript-next",
14
15
  "ms-vscode.vscode-typescript-tslint-plugin",
15
16
  "eg2.tslint",
16
17
  "zuoez02.tslint-snippets",
@@ -50,13 +51,17 @@ const settingsJson = {
50
51
  },
51
52
  "task.autoDetect": "off",
52
53
  "npm.autoDetect": "off",
54
+ "search.useIgnoreFiles": false,
55
+ "search.exclude": {
56
+ "**/node_modules": true,
57
+ "**/dist": true,
58
+ },
53
59
  // VSCode CodeLens
54
60
  "javascript.referencesCodeLens.enabled": true,
55
61
  "typescript.implementationsCodeLens.enabled": true,
56
62
  "typescript.referencesCodeLens.enabled": true,
57
63
 
58
- // TypeScript — v7 (tsgo) ships no JS tsserver, so use the native-preview LSP extension instead of a tsdk path
59
- "typescript.experimental.useTsgo": true,
64
+ "typescript.tsdk": "node_modules/typescript",
60
65
  "typescript.tsserver.maxTsServerMemory": 8192,
61
66
  "typescript.disableAutomaticTypeAcquisition": true,
62
67
  "typescript.check.npmIsInstalled": false,