Skip to content

Commit ffdd1d4

Browse files
committed
fix: merge decorators into modifiers
See microsoft/TypeScript#49089
1 parent 86b287d commit ffdd1d4

22 files changed

+1876
-1370
lines changed

package.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"clean": "rimraf dist",
1010
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" --color",
1111
"prettier": "prettier --write \"{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}\"",
12-
"test": "ava",
12+
"test": "NODE_OPTIONS='--loader=tsx' ava",
1313
"prebuild": "pnpm run clean",
1414
"build": "pnpm run prebuild && pnpm run rollup",
1515
"build:built_in_module_map": "ts-node --esm script/generate-built-in-module-map.ts",
@@ -62,13 +62,13 @@
6262
"@types/reserved-words": "^0.1.0",
6363
"@types/resolve": "1.20.0",
6464
"@types/semver": "^7.3.9",
65-
"@typescript-eslint/eslint-plugin": "^5.27.1",
66-
"@typescript-eslint/parser": "^5.27.1",
65+
"@typescript-eslint/eslint-plugin": "^6.13.2",
66+
"@typescript-eslint/parser": "^6.13.2",
6767
"@wessberg/ts-config": "2.0.3",
6868
"@wessberg/prettier-config": "1.0.0",
69-
"rollup-plugin-ts": "3.0.2",
69+
"rollup-plugin-ts": "3.4.5",
7070
"ava": "3.15.0",
71-
"eslint": "^8.17.0",
71+
"eslint": "^8.55.0",
7272
"eslint-config-prettier": "^8.5.0",
7373
"eslint-plugin-import": "^2.26.0",
7474
"eslint-plugin-jsdoc": "^39.3.2",
@@ -84,9 +84,9 @@
8484
"sandhog": "^2.0.2",
8585
"semver": "7.3.7",
8686
"standard-changelog": "^2.0.27",
87-
"ts-node": "^10.8.1",
8887
"tslib": "^2.4.0",
89-
"typescript": "4.7.3",
88+
"tsx": "^4.6.2",
89+
"typescript": "5.3.3",
9090
"typescript-3-2-1": "npm:[email protected]",
9191
"typescript-3-3-1": "npm:[email protected]",
9292
"typescript-3-4-1": "npm:[email protected]",
@@ -101,7 +101,8 @@
101101
"typescript-4-3-5": "npm:[email protected]",
102102
"typescript-4-4-2": "npm:[email protected]",
103103
"typescript-4-5-4": "npm:[email protected]",
104-
"typescript-4-6-4": "npm:[email protected]"
104+
"typescript-4-6-4": "npm:[email protected]",
105+
"typescript-4-7-3": "npm:[email protected]"
105106
},
106107
"dependencies": {
107108
"@wessberg/stringutil": "^1.0.19",
@@ -149,7 +150,7 @@
149150
"ts": "module"
150151
},
151152
"nodeArguments": [
152-
"--loader=ts-node/esm"
153+
"--loader=tsx"
153154
],
154155
"environmentVariables": {
155156
"FORCE_COLOR": "3"

0 commit comments

Comments
 (0)