File tree 2 files changed +27
-0
lines changed
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ # EditorConfig is awesome: http://EditorConfig.org
2
+
3
+ # top-most EditorConfig file
4
+ root = true
5
+
6
+ # Unix-style newlines with a newline ending every file
7
+ [* ]
8
+ charset = utf-8
9
+ end_of_line = lf
10
+ insert_final_newline = true
11
+ trim_trailing_whitespace = true
12
+
13
+ # Matches multiple files with brace expansion notation
14
+ # Set default charset
15
+ [* .js ]
16
+ indent_style = space
17
+ indent_size = 4
18
+
19
+ [{package.json} ]
20
+ indent_style = space
21
+ indent_size = 2
Original file line number Diff line number Diff line change @@ -24,6 +24,12 @@ module.exports = {
24
24
commonjs2 : "react" ,
25
25
commonjs : "react" ,
26
26
amd : "react"
27
+ } ,
28
+ "react-dom" : {
29
+ root : "ReactDOM" ,
30
+ commonjs2 : "react-dom" ,
31
+ commonjs : "react-dom" ,
32
+ amd : "react-dom"
27
33
}
28
34
} ] ,
29
35
plugins : [
You can’t perform that action at this time.
0 commit comments