Skip to content

Commit 1ea7baf

Browse files
committed
Fix i18n in the built version
1 parent ea2e05a commit 1ea7baf

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-react-app-ts",
3-
"version": "1.10.1",
3+
"version": "1.10.2",
44
"description": "Scalable starter boilerplate for React applications",
55
"main": "./src/index.tsx",
66
"bin": {

tsconfig.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
"experimentalDecorators": true,
1111
"forceConsistentCasingInFileNames": true,
1212
"importHelpers": true,
13+
"isolatedModules": true,
1314
"jsx": "react",
14-
"lib": ["dom", "esNext"],
15-
"module": "commonjs",
16-
"moduleResolution": "node",
15+
"lib": ["dom", "ESNext"],
16+
"module": "ESNext",
17+
"moduleResolution": "Node",
1718
"noEmit": false,
1819
"noEmitHelpers": true,
1920
"noEmitOnError": true,
@@ -41,7 +42,7 @@
4142
"strictPropertyInitialization": true,
4243
"strictNullChecks": true,
4344
"sourceMap": true,
44-
"target": "es5"
45+
"target": "ES5"
4546
},
4647
"compileOnSave": false,
4748
"include": ["src/**/*"],

0 commit comments

Comments
 (0)