File tree 5 files changed +56
-6
lines changed
5 files changed +56
-6
lines changed Original file line number Diff line number Diff line change 9
9
"prod" : " webpack --mode production" ,
10
10
"watch" : " webpack --mode development --watch"
11
11
},
12
+ "browserslist" : " > 0.25%, not dead" ,
12
13
"repository" : {
13
14
"type" : " git" ,
14
15
"url" : " git+https://github.com/MikhailMasny/webpack-tutorials.git"
25
26
},
26
27
"homepage" : " https://github.com/MikhailMasny/webpack-tutorials#readme" ,
27
28
"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" ,
28
34
"clean-webpack-plugin" : " ^3.0.0" ,
29
35
"copy-webpack-plugin" : " ^5.1.1" ,
30
36
"css-loader" : " ^3.4.2" ,
40
46
"xml-loader" : " ^1.2.1"
41
47
},
42
48
"dependencies" : {
49
+ "@babel/polyfill" : " ^7.8.7" ,
43
50
"jquery" : " ^3.4.1" ,
44
51
"normalize.css" : " ^8.0.1"
45
52
}
Original file line number Diff line number Diff line change
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 ) ;
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import json from "../assets/data.json"
3
3
import xml from "../assets/data.xml"
4
4
import webpackScheme from "../assets/webpack.png"
5
5
import "../styles/style.css"
6
+ import "./babel.js"
6
7
7
8
const post = new Post ( "Webpack post title" , webpackScheme ) ;
8
9
Original file line number Diff line number Diff line change 1
- function createAnalytics ( ) {
1
+ function createAnalytics ( ) : object {
2
2
let counter = 0 ;
3
- let isDestroyed = false ;
4
- const listener = ( ) => counter ++ ;
3
+ let isDestroyed : boolean = false ;
4
+ const listener = ( ) : number => counter ++ ;
5
5
document . addEventListener ( "click" , listener ) ;
6
6
7
7
return {
@@ -19,4 +19,4 @@ function createAnalytics() {
19
19
}
20
20
}
21
21
22
- window . analytics = createAnalytics ( ) ;
22
+ window [ " analytics" ] = createAnalytics ( ) ;
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ module.exports = {
27
27
context : path . resolve ( __dirname , "src" ) ,
28
28
mode : "development" ,
29
29
entry : {
30
- main : " ./javascript/script.js",
31
- analyics : "./javascript /analytics.js "
30
+ main : [ "@babel/polyfill" , " ./javascript/script.js"] ,
31
+ analytics : "./typescript /analytics.ts "
32
32
} ,
33
33
output : {
34
34
filename : "[name].[contenthash].js" ,
@@ -79,6 +79,37 @@ module.exports = {
79
79
{
80
80
test : / \. c s v $ / ,
81
81
use : [ "csv-loader" ]
82
+ } ,
83
+ {
84
+ test : / \. j s $ / ,
85
+ exclude : / n o d e _ m o d u l e s / ,
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 : / \. t s $ / ,
100
+ exclude : / n o d e _ m o d u l e s / ,
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
+ }
82
113
}
83
114
]
84
115
}
You can’t perform that action at this time.
0 commit comments