Skip to content

Commit a1dffc8

Browse files
committed
chore: use tsgo for type generation
1 parent 4b7ec3c commit a1dffc8

File tree

36 files changed

+75
-75
lines changed

36 files changed

+75
-75
lines changed

packages/astro/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@
6969
"build": "run-p build:transpile build:types",
7070
"build:dev": "yarn build",
7171
"build:transpile": "rollup -c rollup.npm.config.mjs",
72-
"build:types": "tsc -p tsconfig.types.json",
72+
"build:types": "tsgo -p tsconfig.types.json",
7373
"build:watch": "run-p build:transpile:watch build:types:watch",
7474
"build:dev:watch": "yarn build:watch",
7575
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
76-
"build:types:watch": "tsc -p tsconfig.types.json --watch",
76+
"build:types:watch": "tsgo -p tsconfig.types.json --watch",
7777
"build:tarball": "npm pack",
7878
"circularDepCheck": "madge --circular src/index.client.ts && madge --circular src/index.server.ts && madge --circular src/index.types.ts",
7979
"clean": "rimraf build coverage sentry-astro-*.tgz",

packages/aws-serverless/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@
8484
"build:dev": "run-p build:transpile build:types",
8585
"build:transpile": "rollup -c rollup.npm.config.mjs && yarn build:layer",
8686
"build:types": "run-s build:types:core build:types:downlevel",
87-
"build:types:core": "tsc -p tsconfig.types.json",
87+
"build:types:core": "tsgo -p tsconfig.types.json",
8888
"build:types:downlevel": "yarn downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8",
8989
"build:watch": "run-p build:transpile:watch build:types:watch",
9090
"build:dev:watch": "yarn build:watch",
9191
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
92-
"build:types:watch": "tsc -p tsconfig.types.json --watch",
92+
"build:types:watch": "tsgo -p tsconfig.types.json --watch",
9393
"build:tarball": "npm pack",
9494
"circularDepCheck": "madge --circular src/index.ts",
9595
"clean": "rimraf build dist-awslambda-layer coverage sentry-serverless-*.tgz",

packages/browser-utils/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
"build:dev": "yarn build",
4747
"build:transpile": "rollup -c rollup.npm.config.mjs",
4848
"build:types": "run-s build:types:core build:types:downlevel",
49-
"build:types:core": "tsc -p tsconfig.types.json",
49+
"build:types:core": "tsgo -p tsconfig.types.json",
5050
"build:types:downlevel": "yarn downlevel-dts build/types build/types-ts3.8 --to ts3.8",
5151
"build:watch": "run-p build:transpile:watch build:types:watch",
5252
"build:dev:watch": "run-p build:transpile:watch build:types:watch",
5353
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
54-
"build:types:watch": "tsc -p tsconfig.types.json --watch",
54+
"build:types:watch": "tsgo -p tsconfig.types.json --watch",
5555
"build:tarball": "npm pack",
5656
"clean": "rimraf build coverage sentry-internal-browser-utils-*.tgz",
5757
"fix": "eslint . --format stylish --fix",

packages/browser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@
6060
"build:bundle": "rollup -c rollup.bundle.config.mjs",
6161
"build:transpile": "rollup -c rollup.npm.config.mjs",
6262
"build:types": "run-s build:types:core build:types:downlevel",
63-
"build:types:core": "tsc -p tsconfig.types.json",
63+
"build:types:core": "tsgo -p tsconfig.types.json",
6464
"build:types:downlevel": "yarn downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8",
6565
"build:watch": "run-p build:transpile:watch build:bundle:watch build:types:watch",
6666
"build:dev:watch": "run-p build:transpile:watch build:types:watch",
6767
"build:bundle:watch": "rollup -c rollup.bundle.config.mjs --watch",
6868
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
69-
"build:types:watch": "tsc -p tsconfig.types.json --watch",
69+
"build:types:watch": "tsgo -p tsconfig.types.json --watch",
7070
"build:tarball": "npm pack",
7171
"circularDepCheck": "madge --circular src/index.ts",
7272
"clean": "rimraf build coverage .rpt2_cache sentry-browser-*.tgz",

packages/bun/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@
5050
"build:dev": "yarn build",
5151
"build:transpile": "rollup -c rollup.npm.config.mjs",
5252
"build:types": "run-s build:types:core build:types:downlevel",
53-
"build:types:core": "tsc -p tsconfig.types.json",
53+
"build:types:core": "tsgo -p tsconfig.types.json",
5454
"build:types:downlevel": "yarn downlevel-dts build/types build/types-ts3.8 --to ts3.8",
5555
"build:watch": "run-p build:transpile:watch build:types:watch",
5656
"build:dev:watch": "yarn build:watch",
5757
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
58-
"build:types:watch": "tsc -p tsconfig.types.json --watch",
58+
"build:types:watch": "tsgo -p tsconfig.types.json --watch",
5959
"build:tarball": "npm pack",
6060
"circularDepCheck": "madge --circular src/index.ts",
6161
"clean": "rimraf build coverage sentry-bun-*.tgz",

packages/cloudflare/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@
7070
"build:dev": "yarn build",
7171
"build:transpile": "rollup -c rollup.npm.config.mjs",
7272
"build:types": "run-s build:types:core build:types:downlevel",
73-
"build:types:core": "tsc -p tsconfig.types.json",
73+
"build:types:core": "tsgo -p tsconfig.types.json",
7474
"build:types:downlevel": "yarn downlevel-dts build/types build/types-ts3.8 --to ts3.8",
7575
"build:watch": "run-p build:transpile:watch build:types:watch",
7676
"build:dev:watch": "yarn build:watch",
7777
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
78-
"build:types:watch": "tsc -p tsconfig.types.json --watch",
78+
"build:types:watch": "tsgo -p tsconfig.types.json --watch",
7979
"build:tarball": "npm pack",
8080
"circularDepCheck": "madge --circular src/index.ts",
8181
"clean": "rimraf build coverage sentry-cloudflare-*.tgz",

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
"build:dev": "yarn build",
4444
"build:transpile": "rollup -c rollup.npm.config.mjs",
4545
"build:types": "run-s build:types:core build:types:downlevel",
46-
"build:types:core": "tsc -p tsconfig.types.json",
46+
"build:types:core": "tsgo -p tsconfig.types.json",
4747
"build:types:downlevel": "yarn downlevel-dts build/types build/types-ts3.8 --to ts3.8",
4848
"build:watch": "run-p build:transpile:watch build:types:watch",
4949
"build:dev:watch": "yarn build:watch",
5050
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
51-
"build:types:watch": "tsc -p tsconfig.types.json --watch",
51+
"build:types:watch": "tsgo -p tsconfig.types.json --watch",
5252
"build:tarball": "npm pack",
5353
"circularDepCheck": "madge --circular src/index.ts",
5454
"clean": "rimraf build coverage sentry-core-*.tgz",

packages/deno/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"build": "run-s build:transpile build:types",
3333
"build:dev": "yarn build",
3434
"build:transpile": "yarn deno-types && rollup -c rollup.npm.config.mjs",
35-
"build:types": "tsc -p tsconfig.types.json",
35+
"build:types": "tsgo -p tsconfig.types.json",
3636
"build:tarball": "npm pack",
3737
"circularDepCheck": "madge --circular src/index.ts",
3838
"clean": "rimraf build build-types build-test coverage node_modules/.deno sentry-deno-*.tgz",

packages/feedback/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@
5050
"build:bundle": "rollup -c rollup.bundle.config.mjs",
5151
"build:dev": "run-p build:transpile build:types",
5252
"build:types": "run-s build:types:core build:types:downlevel",
53-
"build:types:core": "tsc -p tsconfig.types.json",
53+
"build:types:core": "tsgo -p tsconfig.types.json",
5454
"build:types:downlevel": "yarn downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8 && yarn node ./scripts/shim-preact-export.js",
5555
"build:watch": "run-p build:transpile:watch build:bundle:watch build:types:watch",
5656
"build:dev:watch": "run-p build:transpile:watch build:types:watch",
5757
"build:transpile:watch": "yarn build:transpile --watch",
5858
"build:bundle:watch": "yarn build:bundle --watch",
59-
"build:types:watch": "tsc -p tsconfig.types.json --watch",
59+
"build:types:watch": "tsgo -p tsconfig.types.json --watch",
6060
"build:tarball": "npm pack",
6161
"circularDepCheck": "madge --circular src/index.ts",
6262
"clean": "rimraf build sentry-internal-feedback-*.tgz",

packages/gatsby/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,16 @@
6262
"scripts": {
6363
"build": "run-p build:transpile build:types",
6464
"build:dev": "yarn build",
65-
"build:plugin": "tsc -p tsconfig.plugin.json",
65+
"build:plugin": "tsgo -p tsconfig.plugin.json",
6666
"build:transpile": "run-p build:rollup build:plugin",
6767
"build:rollup": "rollup -c rollup.npm.config.mjs",
6868
"build:types": "run-s build:types:core build:types:downlevel",
69-
"build:types:core": "tsc -p tsconfig.types.json",
69+
"build:types:core": "tsgo -p tsconfig.types.json",
7070
"build:types:downlevel": "yarn downlevel-dts build/types build/types-ts3.8 --to ts3.8",
7171
"build:watch": "run-p build:transpile:watch build:types:watch",
7272
"build:dev:watch": "yarn build:watch",
7373
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
74-
"build:types:watch": "tsc -p tsconfig.types.json --watch",
74+
"build:types:watch": "tsgo -p tsconfig.types.json --watch",
7575
"build:tarball": "npm pack",
7676
"circularDepCheck": "madge --circular src/index.ts",
7777
"clean": "rimraf build coverage *.d.ts sentry-gatsby-*.tgz",

0 commit comments

Comments
 (0)