Skip to content

Commit

Permalink
ci: disable lint for build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
BRAVO68WEB committed Dec 29, 2023
1 parent 3c99c8b commit 84433ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist/
6 changes: 4 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@
"typeRoots": [
"./node_modules/@types"
],
"esModuleInterop": true
"esModuleInterop": true,
"outDir": "./dist",
},
"exclude": [
"node_modules",
"cdk.out"
"cdk.out",
"dist",
]
}

0 comments on commit 84433ef

Please sign in to comment.