Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update typescript to 4.6.3 #5788

Merged
merged 6 commits into from
Apr 26, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update ts-jest and replace awesome-typescript-loader with ts-loader t…
…o fix fast-animation issue
  • Loading branch information
chrisdholt committed Apr 26, 2022
commit 08439bf270530fd32ebd7382e1e654a491426807
9 changes: 5 additions & 4 deletions packages/utilities/fast-animation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
}
},
"rootDir": "./",
"testEnvironment": "jsdom",
"transform": {
".(ts|tsx)": "ts-jest"
},
Expand All @@ -71,12 +72,11 @@
"@babel/preset-react": "^7.12.13",
"@microsoft/api-extractor": "7.8.1",
"@microsoft/eslint-config-fast-dna": "^2.0.0",
"@types/jest": "^25.2.1",
"@types/jest": "^27.0.0",
"@types/node": "^15.0.1",
"@types/react": "^16.3.0",
"@types/react-dom": "^16.3.0",
"@types/react-redux": "^4.4.47",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint": "^6.8.0",
Expand All @@ -85,7 +85,7 @@
"file-loader": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^0.4.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.4.0",
"jest": "^27.0.0",
"mini-css-extract-plugin": "^1.6.1",
"postcss": "^8.3.5",
"postcss-loader": "^4.2.0",
Expand All @@ -95,7 +95,8 @@
"react-router": "^4.1.1",
"require-dir": "^0.3.2",
"style-loader": "^0.13.2",
"ts-jest": "^25.4.0",
"ts-jest": "^27.0.0",
"ts-loader": "^8.0.0",
"typescript": "^4.6.2",
"webpack": "^4.44.0",
"webpack-bundle-analyzer": "^3.5.2",
Expand Down
1 change: 0 additions & 1 deletion packages/utilities/fast-animation/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "react",
"allowJs": true,
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
Expand Down
2 changes: 1 addition & 1 deletion packages/utilities/fast-animation/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module.exports = (env, args) => {
exclude: /\.(test|spec)/,
use: [
{ loader: "babel-loader" },
{ loader: "awesome-typescript-loader" },
{ loader: "ts-loader" },
{ loader: "eslint-loader" },
],
},
Expand Down
Loading