-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
65 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v16.1.0 | ||
v20.11.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
## Should | ||
|
||
- Remove NODE_OPTIONS=--openssl-legacy-provider once I stop using the current webpack version | ||
|
||
## Could | ||
|
||
- Store pings in the local storage |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,20 @@ | ||
// See https://www.typescriptlang.org/v2/en/tsconfig | ||
|
||
{ | ||
"extends": "@tsconfig/node20/tsconfig.json", | ||
"compilerOptions": { | ||
"allowJs": true, | ||
|
||
"checkJs": true, | ||
|
||
// Aim for the latest ES version. Babel will take care of transpiling to the | ||
"checkJs": true, // Aim for the latest ES version. Babel will take care of transpiling to the | ||
// final targets. | ||
"target": "esnext", | ||
|
||
// Enables webpack tree-shaking (?) and code splitting | ||
"module": "esnext", | ||
|
||
// Let Babel do it | ||
"target": "esnext", // Enables webpack tree-shaking (?) and code splitting | ||
"module": "esnext", // Let Babel do it | ||
"jsx": "preserve", | ||
|
||
"moduleResolution": "node", | ||
|
||
// Allow importing defaults from non-ES modules | ||
"moduleResolution": "node", // Allow importing defaults from non-ES modules | ||
"esModuleInterop": true, | ||
|
||
"sourceMap": true, | ||
|
||
// Disallow features that require cross-file information for emit | ||
"sourceMap": true, // Disallow features that require cross-file information for emit | ||
"isolatedModules": true, | ||
|
||
"strict": true, | ||
|
||
"noEmit": true | ||
"noEmit": true, | ||
"lib": ["dom"] | ||
}, | ||
"exclude": ["node_modules", "dist"] | ||
} |