Skip to content

Commit

Permalink
🔨 devscripts:
Browse files Browse the repository at this point in the history
  • Loading branch information
victorsoares96 committed Sep 4, 2022
1 parent 0064e48 commit 786a5d2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"prettier:format": "prettier --write .",
"lint": "eslint ./src/ --ext .ts,.js,.json",
"lint:fix": "eslint --fix ./src/ --ext .ts,.js,.json",
"type-check": "tsc -p tsconfig.json --noEmit --pretty",
"type-check": "tsc -p tsconfig.build.json --noEmit --pretty",
"create-bucket": "cross-var aws s3 mb s3://$npm_package_config_s3BucketName --region $npm_package_config_region",
"delete-bucket": "cross-var aws s3 rb s3://$npm_package_config_s3BucketName --region $npm_package_config_region",
"delete-stack": "cross-var aws cloudformation delete-stack --stack-name $npm_package_config_cloudFormationStackName --region $npm_package_config_region",
Expand Down
7 changes: 7 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "./tsconfig",
"compilerOptions": {
"skipLibCheck": true
},
"exclude": ["node_modules/**"]
}

0 comments on commit 786a5d2

Please sign in to comment.