Skip to content

Commit c101507

Browse files
committed
Remove babel, add typescript.
1 parent 540d6bd commit c101507

File tree

3 files changed

+32
-650
lines changed

3 files changed

+32
-650
lines changed

packages/browser/test/e2e/package.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,20 @@
77
"node": ">=12"
88
},
99
"private": true,
10-
"babel": {
11-
"presets": [
12-
"@babel/preset-env"
13-
]
14-
},
1510
"scripts": {
1611
"install-browsers": "playwright install --with-deps",
1712
"pretest": "yarn install && yarn install-browsers",
1813
"test": "playwright test ./test --browser='all' --reporter='line'",
1914
"posttest": "rimraf dist"
2015
},
2116
"dependencies": {
22-
"@babel/core": "^7.15.5",
23-
"@babel/preset-env": "^7.15.4",
2417
"@playwright/test": "1.17.0-next-alpha-nov-5-2021",
2518
"@sentry/browser": "file:../..",
2619
"babel-loader": "^8.2.2",
2720
"handlebars-loader": "^1.7.1",
2821
"html-webpack-plugin": "^5.5.0",
2922
"ts-loader": "^9.2.6",
23+
"typescript": "^4.5.2",
3024
"webpack": "^5.52.0"
3125
},
3226
"resolutions": {
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "../../tsconfig.json",
3+
"include": ["./**/*.ts"],
4+
"exclude": ["dist"],
5+
"compilerOptions": {
6+
"rootDir": "."
7+
}
8+
}

0 commit comments

Comments
 (0)