Skip to content

Commit

Permalink
build and start
Browse files Browse the repository at this point in the history
  • Loading branch information
fufeck committed Nov 5, 2024
1 parent ab279b1 commit 79ebd0b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"Fabien Tafforeau <[email protected]>"
],
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"start": "node dist/server/index.js",
"dev": "ts-node server/index.ts",
"lint": "eslint --ext .js,.ts,.tsx .",
"predev": "only-include-used-icons",
Expand Down Expand Up @@ -69,4 +70,4 @@
"engines": {
"node": ">= 18"
}
}
}
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"noEmit": false,
"incremental": true,
"esModuleInterop": true,
"module": "NodeNext",
"isolatedModules": true,
"jsx": "preserve",
"resolveJsonModule": true,
"baseUrl": ".",
"outDir": "./dist",
"paths": {
"@/components/*": ["components/*"],
"@/layouts/*": ["layouts/*"],
Expand Down

0 comments on commit 79ebd0b

Please sign in to comment.