Skip to content
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

Switch to "moduleResolution": "NodeNext" in tsconfig.json #186

Draft
wants to merge 31 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
2a8b679
Switch to `"moduleResolution": "node16"` in `tsconfig.json`
kachkaev Oct 31, 2022
9e0e62a
Fix import
kachkaev Oct 31, 2022
4876e2b
Patch webpack config
kachkaev Oct 31, 2022
fecf8fe
Tweak tsconfig
kachkaev Oct 31, 2022
6bd6eea
Merge remote-tracking branch 'origin/main' into ak/esm-module-resolution
kachkaev Oct 31, 2022
ce7905d
Merge branch 'main' into ak/esm-module-resolution
kachkaev Nov 8, 2022
352eb42
Update yarn.lock
kachkaev Nov 8, 2022
e2a0b6c
Merge remote-tracking branch 'origin/main' into ak/esm-module-resolution
kachkaev Jan 21, 2023
2081516
Merge branch 'ak/esm-module-resolution' of github.com:kachkaev/njt in…
kachkaev Jan 21, 2023
1e516e6
`yarn fix:yarn-dedupe`
kachkaev Jan 21, 2023
dea0614
Remove unused ESLint disable directive
kachkaev Jan 21, 2023
2696db0
Remove `typeof` hack to test `[email protected]`
kachkaev Jan 21, 2023
c61c7b2
Revert "Remove `typeof` hack to test `[email protected]`"
kachkaev Jan 22, 2023
1b29c73
Align `package.json` with `main` to reduce diff
kachkaev Jan 22, 2023
7762b66
Merge remote-tracking branch 'origin/main' into ak/esm-module-resolution
kachkaev Mar 8, 2023
5a9fbff
Merge remote-tracking branch 'origin/main' into ak/esm-module-resolution
kachkaev Mar 25, 2023
d60a109
Merge remote-tracking branch 'origin/main' into ak/esm-module-resolution
kachkaev Mar 25, 2023
62bf013
yarn `fix:yarn-dedupe`
kachkaev Mar 25, 2023
dfa7763
Merge branch 'main' into ak/esm-module-resolution
kachkaev Apr 17, 2023
04e1024
Fix yarn.lock
kachkaev Apr 18, 2023
c11c67e
Merge remote-tracking branch 'origin/main' into ak/esm-module-resolution
kachkaev Apr 18, 2023
75ce596
Merge remote-tracking branch 'origin/main' into ak/esm-module-resolution
kachkaev Jun 3, 2023
e5ad9d2
Merge remote-tracking branch 'origin/main' into ak/esm-module-resolution
kachkaev Jun 3, 2023
1a9ef19
Merge remote-tracking branch 'origin/main' into ak/esm-module-resolution
kachkaev Jun 3, 2023
c34a2ed
Merge remote-tracking branch 'origin/main' into ak/esm-module-resolution
kachkaev Jul 15, 2023
9c29034
yarn.lock
kachkaev Jul 15, 2023
8039409
Reduce diff in yarn.lock
kachkaev Jul 15, 2023
70c0ad1
Merge main
kachkaev Nov 16, 2023
b3f37ab
Merge remote-tracking branch 'origin/main' into ak/esm-module-resolution
kachkaev Nov 16, 2023
2276aa8
wip
kachkaev Nov 16, 2023
b97b161
eslint-import-resolver-typescript
kachkaev Nov 16, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Tweak tsconfig
  • Loading branch information
kachkaev committed Oct 31, 2022
commit fecf8fee52a7c2116c63440c79443fad6e955e66
7 changes: 3 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noUncheckedIndexedAccess": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node16",
"module": "ESNext",
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
Expand Down