Skip to content

Commit a1fdbfb

Browse files
committed
feat: add webpack babel (+typescript)
1 parent d87933e commit a1fdbfb

File tree

5 files changed

+56
-6
lines changed

5 files changed

+56
-6
lines changed

package.json

+7
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"prod": "webpack --mode production",
1010
"watch": "webpack --mode development --watch"
1111
},
12+
"browserslist": "> 0.25%, not dead",
1213
"repository": {
1314
"type": "git",
1415
"url": "git+https://github.com/MikhailMasny/webpack-tutorials.git"
@@ -25,6 +26,11 @@
2526
},
2627
"homepage": "https://github.com/MikhailMasny/webpack-tutorials#readme",
2728
"devDependencies": {
29+
"@babel/core": "^7.9.0",
30+
"@babel/plugin-proposal-class-properties": "^7.8.3",
31+
"@babel/preset-env": "^7.9.0",
32+
"@babel/preset-typescript": "^7.9.0",
33+
"babel-loader": "^8.1.0",
2834
"clean-webpack-plugin": "^3.0.0",
2935
"copy-webpack-plugin": "^5.1.1",
3036
"css-loader": "^3.4.2",
@@ -40,6 +46,7 @@
4046
"xml-loader": "^1.2.1"
4147
},
4248
"dependencies": {
49+
"@babel/polyfill": "^7.8.7",
4350
"jquery": "^3.4.1",
4451
"normalize.css": "^8.0.1"
4552
}

src/javascript/babel.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
async function start() {
2+
return await Promise.resolve("async is working");
3+
}
4+
5+
start().then(console.log);
6+
7+
class Util {
8+
static id = Date.now();
9+
}
10+
11+
console.log("Util Id:", Util.id);

src/javascript/script.js

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import json from "../assets/data.json"
33
import xml from "../assets/data.xml"
44
import webpackScheme from "../assets/webpack.png"
55
import "../styles/style.css"
6+
import "./babel.js"
67

78
const post = new Post("Webpack post title", webpackScheme);
89

src/javascript/analytics.js src/typescript/analytics.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
function createAnalytics() {
1+
function createAnalytics(): object {
22
let counter = 0;
3-
let isDestroyed = false;
4-
const listener = () => counter++;
3+
let isDestroyed: boolean = false;
4+
const listener = (): number => counter++;
55
document.addEventListener("click", listener);
66

77
return {
@@ -19,4 +19,4 @@ function createAnalytics() {
1919
}
2020
}
2121

22-
window.analytics = createAnalytics();
22+
window["analytics"] = createAnalytics();

webpack.config.js

+33-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ module.exports = {
2727
context: path.resolve(__dirname, "src"),
2828
mode: "development",
2929
entry: {
30-
main: "./javascript/script.js",
31-
analyics: "./javascript/analytics.js"
30+
main: ["@babel/polyfill", "./javascript/script.js"],
31+
analytics: "./typescript/analytics.ts"
3232
},
3333
output: {
3434
filename: "[name].[contenthash].js",
@@ -79,6 +79,37 @@ module.exports = {
7979
{
8080
test: /\.csv$/,
8181
use: ["csv-loader"]
82+
},
83+
{
84+
test: /\.js$/,
85+
exclude: /node_modules/,
86+
loader: {
87+
loader: "babel-loader",
88+
options: {
89+
presets: [
90+
"@babel/preset-env"
91+
],
92+
plugins: [
93+
"@babel/plugin-proposal-class-properties"
94+
]
95+
}
96+
}
97+
},
98+
{
99+
test: /\.ts$/,
100+
exclude: /node_modules/,
101+
loader: {
102+
loader: "babel-loader",
103+
options: {
104+
presets: [
105+
"@babel/preset-env",
106+
"@babel/preset-typescript"
107+
],
108+
plugins: [
109+
"@babel/plugin-proposal-class-properties"
110+
]
111+
}
112+
}
82113
}
83114
]
84115
}

0 commit comments

Comments
 (0)