Skip to content

Commit

Permalink
Updates VS Code ESLint settings, console output, and TypeScript compi…
Browse files Browse the repository at this point in the history
…ler options.
  • Loading branch information
mkormendy committed Apr 2, 2024
1 parent b848626 commit c007a1c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"run", "debug"
],
"args": ["--colors"],
"console": "externalTerminal", // "externalTerminal" or "internalConsole"
"internalConsoleOptions": "neverOpen",
"console": "integratedTerminal", // "externalTerminal" or "internalConsole" or "integratedTerminal"
// "internalConsoleOptions": "neverOpen",
"outputCapture": "std",
"program": "${workspaceFolder}/src/index.js",
"skipFiles": [
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"files.eol": "\n",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"editor.rulers": [ 140 ],
"eslint.enable": true
Expand Down
12 changes: 6 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{

Check failure on line 1 in tsconfig.json

View workflow job for this annotation

GitHub Actions / build (10.x)

Compiler option 'module' of value 'nodenext' is unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.

Check failure on line 1 in tsconfig.json

View workflow job for this annotation

GitHub Actions / build (12.x)

Compiler option 'module' of value 'nodenext' is unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.

Check failure on line 1 in tsconfig.json

View workflow job for this annotation

GitHub Actions / build (13.x)

Compiler option 'module' of value 'nodenext' is unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.

Check failure on line 1 in tsconfig.json

View workflow job for this annotation

GitHub Actions / build (14.x)

Compiler option 'module' of value 'nodenext' is unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.
"compilerOptions": {
"target": "ES2018", // ~node10
"module": "commonjs",
"target": "ESNext", // ~node10
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": [
"es2015",
"es2016",
"es2017",
"es2018"
"ESNext"
],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noImplicitAny": false
},
"include": [
Expand Down

0 comments on commit c007a1c

Please sign in to comment.