Skip to content

Commit

Permalink
Merge pull request #1110 from aligent/fix/DO-1550_disable_no_emit
Browse files Browse the repository at this point in the history
GLOBAL: enable declaration and disable no_emit
  • Loading branch information
krishanthisera authored Oct 16, 2023
2 parents a66170e + bbdc768 commit 8b571ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"homepage": "https://github.com/aligent/aws-cdk-constructs#readme",
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"lint": "eslint --ignore-path .eslintignore --ext .ts .",
"lint:check": "npm run lint",
"lint:fix": "npm run lint --fix",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"target": "ES2018",
"module": "commonjs",
"lib": ["es2018"],
"declaration": false,
"noEmit": true,
"noEmit": false,
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
Expand Down

0 comments on commit 8b571ee

Please sign in to comment.