Skip to content

Commit

Permalink
build: generate sourceMap and include "src/" in package.json files
Browse files Browse the repository at this point in the history
Release-As: 1.1.8

Relates to remarkablemark/html-react-parser#1097
  • Loading branch information
remarkablemark committed Oct 20, 2023
1 parent 07adcbe commit a39c0b9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
},
"files": [
"cjs/",
"src/",
"umd/"
],
"license": "MIT"
Expand Down
8 changes: 6 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{
"compilerOptions": {
"esModuleInterop": true,
"target": "es5",
"module": "commonjs",
"removeComments": true,
"esModuleInterop": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"strict": true
},
"include": ["src"],
Expand Down

0 comments on commit a39c0b9

Please sign in to comment.