Skip to content

Commit a585faa

Browse files
authored
Update tsconfig.json
re-ordered members alphabetically and added module option
1 parent 919ebb9 commit a585faa

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

tsconfig.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
22
"compilerOptions": {
3-
"target": "es2015",
3+
"allowSyntheticDefaultImports": true,
4+
"esModuleInterop": true,
45
"jsx": "react",
5-
"noEmit": true,
6+
"module": "es6",
67
"moduleResolution": "node",
8+
"noEmit": true,
79
"noImplicitAny": true,
8-
"allowSyntheticDefaultImports": true,
9-
"esModuleInterop": true
10+
"target": "es6"
1011
},
11-
"exclude": [
12-
"node_modules"
13-
]
12+
"exclude": ["node_modules"]
1413
}

0 commit comments

Comments
 (0)