-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test project to compile with ts 3.8
- Loading branch information
1 parent
d721e2a
commit b92cd62
Showing
5 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* eslint-disable @typescript-eslint/no-unused-vars */ | ||
// we need to import the SDK to ensure tsc check the types | ||
import * as _SentryBrowser from '@sentry/browser'; | ||
import * as _SentryCore from '@sentry/core'; | ||
import * as _SentryHub from '@sentry/hub'; | ||
import * as _SentryIntegrations from '@sentry/integrations'; | ||
import * as _SentryNode from '@sentry/node'; | ||
import * as _SentryOpentelemetry from '@sentry/opentelemetry-node'; | ||
import * as _SentryReplay from '@sentry/replay'; | ||
import * as _SentryTracing from '@sentry/tracing'; | ||
import * as _SentryTypes from '@sentry/types'; | ||
import * as _SentryUtils from '@sentry/utils'; | ||
import * as _SentryWasm from '@sentry/wasm'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"name": "@sentry-internal/ts3.8-test", | ||
"version": "7.67.0", | ||
"private": true, | ||
"license": "MIT", | ||
"scripts": { | ||
"build:types": "run-s ts-version type-check", | ||
"ts-version": "tsc --version", | ||
"type-check": "tsc --project tsconfig.json" | ||
}, | ||
"devDependencies": { | ||
"typescript": "3.8.3" | ||
}, | ||
"dependencies": { | ||
"@sentry/browser": "7.67.0", | ||
"@sentry/core": "7.67.0", | ||
"@sentry/hub": "7.67.0", | ||
"@sentry/integrations": "7.67.0", | ||
"@sentry/node": "7.67.0", | ||
"@sentry/opentelemetry-node": "7.67.0", | ||
"@sentry/replay": "7.67.0", | ||
"@sentry/tracing": "7.67.0", | ||
"@sentry/types": "7.67.0", | ||
"@sentry/utils": "7.67.0", | ||
"@sentry/wasm": "7.67.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"include": [ | ||
"index.ts", | ||
], | ||
"compilerOptions": { | ||
"skipLibCheck": false, | ||
"noEmit": true, | ||
"types": [], | ||
"jsx": "react", | ||
"target": "es6", | ||
"moduleResolution": "node", | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters