1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 10:54:44 +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", "module": "Preserve",
"noEmit": true, "noEmit": true,
"moduleResolution": "Bundler", "moduleResolution": "Bundler",
"sourceMap": true,
"target": "ESNext", "target": "ESNext",
"outDir": "dist",
"skipLibCheck": true, "skipLibCheck": true,
"esModuleInterop": true, "esModuleInterop": true,
@@ -27,10 +26,9 @@
/* Library transpiling */ /* Library transpiling */
"declaration": true, "declaration": true,
/* Library in monorepo */
"composite": true, "composite": true,
"declarationMap": true "sourceMap": false,
"declarationMap": false
}, },
"exclude": ["node_modules", "dist"] "exclude": ["node_modules", "dist"]
} }