Skip to content

Commit 9717c11

Browse files
committed
Removed source map creating configs because when they were not available, Vite was complaining!
1 parent 3915e0d commit 9717c11

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141
"vfile": "6.0.1"
4242
},
4343
"files": [
44-
"./dist/",
45-
"!./dist/*.map"
44+
"./dist/"
4645
],
4746
"exports": {
4847
".": "./dist/index.js",

tsconfig.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@
33
"module": "NodeNext",
44
"moduleResolution": "NodeNext",
55
"outDir": "dist",
6-
"sourceMap": true,
76
"strict": true,
8-
"declaration": true,
9-
"declarationMap": true
7+
"declaration": true
108
},
119
"include": ["./src/**/*"]
1210
}

0 commit comments

Comments
 (0)