Skip to content

Commit

Permalink
SOROKA-80: trying commonjs as module type (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
boatincow authored Jul 7, 2022
1 parent a0484e1 commit f17a48c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"compilerOptions": {
"target": "es6",
"module": "es6",
"moduleResolution": "node",
"outDir": "./dist",
"strict": true,
"esModuleInterop": true,
"strictPropertyInitialization": false,
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./dist",
"strict": true,
"esModuleInterop": true,
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react",
"allowJs": true
}
"jsx": "react",
"allowJs": true
}
}

0 comments on commit f17a48c

Please sign in to comment.