1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 02:44:45 +00:00

refactor(packages/tsconfig): disable declaration and source maps

This commit is contained in:
2024-04-10 16:50:25 +07:00
parent 04347254b4
commit 3f1d16b484

View File

@@ -6,9 +6,8 @@
"module": "Preserve",
"noEmit": true,
"moduleResolution": "Bundler",
"sourceMap": true,
"target": "ESNext",
"outDir": "dist",
"skipLibCheck": true,
"esModuleInterop": true,
@@ -27,10 +26,9 @@
/* Library transpiling */
"declaration": true,
/* Library in monorepo */
"composite": true,
"declarationMap": true
"sourceMap": false,
"declarationMap": false
},
"exclude": ["node_modules", "dist"]
}