Skip to content

Commit 837fd07

Browse files
authored
fix: use only declaration maps (#30)
1 parent 489b89e commit 837fd07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"compilerOptions": {
33
"baseUrl": "./",
4-
"declaration": true,
5-
"declarationMap": true,
64
"rootDir": "src",
75
"outDir": "dist",
86
"target": "ES2021",
@@ -19,7 +17,9 @@
1917
"noUnusedLocals": true,
2018
"noUnusedParameters": true,
2119
"noImplicitReturns": true,
22-
"sourceMap": true,
20+
"sourceMap": false,
21+
"declaration": true,
22+
"declarationMap": true,
2323
"types": ["node"]
2424
},
2525
"exclude": ["node_modules", "**/*.spec.ts"],

0 commit comments

Comments
 (0)