Skip to content

Commit

Permalink
NONE) fix: fix not transpiled after installing package (#63)
Browse files Browse the repository at this point in the history
* fix: fix package json

* fix: fix tsconfig

* fix: update version
  • Loading branch information
dohui-son authored May 22, 2024
1 parent 25032ed commit 7c64db1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"name": "@corca-ai/cds",
"author": "Corca <[email protected]>",
"description": "Corca Design System",
"private": false,
"version": "0.0.3",
"version": "0.0.4",
"type": "module",
"packageManager": "[email protected]",
"main": "dist/index.js",
"scripts": {
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"noEmit": false,
"outDir": "dist",
"baseUrl": ".",
"jsx": "preserve",
"jsxImportSource": "@emotion/react",
Expand Down

0 comments on commit 7c64db1

Please sign in to comment.