-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: tsconfig cleanup #905
Conversation
@@ -2,20 +2,14 @@ | |||
"compilerOptions": { | |||
"allowJs": true, | |||
"baseUrl": "./src", | |||
"downlevelIteration": true, | |||
"esModuleInterop": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this flag is enabled by default now that we're on NodeNext
"experimentalDecorators": true, | ||
"forceConsistentCasingInFileNames": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this flag is enabled by default
"paths": { | ||
"editor": [".sink.d.ts"] | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
whoops
"module": "NodeNext", | ||
"outDir": "dist/", | ||
"paths": { | ||
"editor": [".sink.d.ts"] | ||
}, | ||
"resolveJsonModule": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we importing JSON files anywhere not in a unit test?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah we use our package.json
file in a bunch of places
🎉 This PR is included in version 9.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🧰 Changes
Cleans up and modernizes our
tsconfig
!🧬 QA & Testing
If the build passes across the board we should be good to go.