1
0
mirror of https://github.com/flarum/core.git synced 2025-08-30 19:40:02 +02:00

Move Typescript configuration to webpack config from core (#11)

This commit is contained in:
David Wheatley
2021-05-12 01:28:31 +01:00
committed by GitHub
parent 3610f08d6b
commit 4bdb02a878
5 changed files with 1588 additions and 10961 deletions

View File

@@ -6,7 +6,7 @@
"author": "Flarum Team",
"license": "MIT",
"peerDependencies": {
"webpack": "^4.0.0"
"webpack": "^4.46.0"
},
"dependencies": {
"@babel/core": "^7.14.0",
@@ -15,12 +15,15 @@
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.14.0",
"babel-loader": "^8.2.2"
"babel-loader": "^8.2.2",
"source-map-loader": "^2.0.1",
"typescript": "^4.2.4"
},
"devDependencies": {
"prettier": "^2.2.1"
"prettier": "^2.3.0"
}
}