Skip to content

Commit

Permalink
Fix up 'dist' build directives.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrizagidulin committed Dec 31, 2023
1 parent bf006ce commit 5b4a42c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion tsconfig.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@
"lib": ["es2022", "dom"],
"module": "es6",
"moduleResolution": "node",
"outDir": "dist",
"outDir": "dist/esm",
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"noImplicitAny": true,
"removeComments": false,
"preserveConstEnums": true,
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true
},
"ts-node": {
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@
"lib": ["es2022", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"outDir": "dist/esm",
"outDir": "dist/",
"sourceMap": true,
"declaration": false,
"noImplicitAny": true,
"removeComments": false,
"preserveConstEnums": true,
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true
},
"ts-node": {
Expand Down

0 comments on commit 5b4a42c

Please sign in to comment.