Skip to content

Commit

Permalink
Change module and target in tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
semkedaniil committed Oct 13, 2023
1 parent 662c250 commit c326516
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions db-viewer-ui/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"compilerOptions": {
"allowJs": false,
"esModuleInterop": false,
"baseUrl": "./",
"rootDir": "./",
"outDir": "./dist",
Expand All @@ -11,7 +10,8 @@
"noUnusedParameters": false,
"pretty": true,
"allowSyntheticDefaultImports": true,
"target": "ES5",
"target": "ES2015",
"module": "commonjs",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"skipLibCheck": true,
Expand All @@ -23,7 +23,6 @@
"suppressImplicitAnyIndexErrors": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
Expand Down

0 comments on commit c326516

Please sign in to comment.