Skip to content

Commit 62029ef

Browse files
committed
clean up browser native typecheck
1 parent e083015 commit 62029ef

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

packages/browser-sdk/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"test:e2e": "yarn build && playwright test",
1919
"test:ci": "yarn test --reporter=default --reporter=junit --outputFile=junit.xml && yarn test:e2e",
2020
"coverage": "yarn test --coverage",
21-
"typecheck:native": "tsc --project tsconfig.native.json",
2221
"lint": "eslint .",
2322
"lint:ci": "eslint --output-file eslint-report.json --format json .",
2423
"prettier": "prettier --check .",
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"lib": [],
5-
"types": [],
4+
"lib": ["ES2020"],
5+
"types": ["react"],
66
"skipLibCheck": true,
77
"noEmit": true
88
},
99
"include": [
10-
"src/**/*.ts",
11-
"src/**/*.tsx",
1210
"src/**/*.native.ts",
13-
"src/**/*.native.tsx"
11+
"src/**/*.native.tsx",
12+
"src/**/*.native.js",
13+
"src/**/*.native.jsx",
14+
"src/**/*.d.ts"
1415
]
1516
}

0 commit comments

Comments
 (0)