Tweak builds to omit declaration maps in prod
This commit is contained in:
parent
f8c1b9ff4e
commit
af69aef5c0
4 changed files with 7 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tldraw/core",
|
||||
"version": "0.0.76",
|
||||
"version": "0.0.77",
|
||||
"private": false,
|
||||
"description": "A tiny little drawing app (core)",
|
||||
"author": "@steveruizok",
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
"compilerOptions": {
|
||||
"incremental": false,
|
||||
"emitDeclarationOnly": true,
|
||||
"declarationMap": false,
|
||||
"sourceMap": false,
|
||||
"outDir": "./dist/types"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tldraw/tldraw",
|
||||
"version": "0.0.76",
|
||||
"version": "0.0.77",
|
||||
"private": false,
|
||||
"description": "A tiny little drawing app (editor)",
|
||||
"author": "@steveruizok",
|
||||
|
@ -64,7 +64,7 @@
|
|||
"@radix-ui/react-radio-group": "^0.0.18",
|
||||
"@radix-ui/react-tooltip": "^0.0.20",
|
||||
"@stitches/react": "^1.0.0",
|
||||
"@tldraw/core": "^0.0.67",
|
||||
"@tldraw/core": "^0.0.77",
|
||||
"perfect-freehand": "^0.5.3",
|
||||
"react-hotkeys-hook": "^3.4.0",
|
||||
"rko": "^0.5.20"
|
||||
|
|
|
@ -12,7 +12,9 @@
|
|||
],
|
||||
"compilerOptions": {
|
||||
"incremental": false,
|
||||
"sourceMap": false,
|
||||
"emitDeclarationOnly": true,
|
||||
"declarationMap": false,
|
||||
"outDir": "./dist/types"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue