Skip to content

Commit

Permalink
ts: fix typescript config
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavonobreza committed Dec 17, 2023
1 parent 93e5ac3 commit 9b9fc27
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"build": "tsc -p ./tsconfig.build.json",
"check": "tsc -w --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node dist/src/main.js",
Expand Down
9 changes: 7 additions & 2 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"extends": "./tsconfig.json",
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
}
"exclude": [
"./node_modules",
"./test",
"./dist",
"**/*spec.ts"
]
}

1 comment on commit 9b9fc27

@deno-deploy
Copy link

@deno-deploy deno-deploy bot commented on 9b9fc27 Dec 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failed to deploy:

Relative import path "fastify" not prefixed with / or ./ or ../

Please sign in to comment.