Skip to content

Commit

Permalink
Enable JavaScript autocomplete in editors and IDEs
Browse files Browse the repository at this point in the history
Automatically picks up JSDoc annotations and works with IntelliJ, WebStorm, Visual Studio, Visual Studio Code, Sublime Text (via the TypeScript plugin)

1. Adds module `NodeNext` for Node.js 16+
2. Adds resolveJsonModule for JSON autocomplete
  • Loading branch information
colinrotherham committed Mar 5, 2024
1 parent 5e534e7 commit 45bbc4e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"compilerOptions": {
"module": "NodeNext",
"resolveJsonModule": true
}
}

0 comments on commit 45bbc4e

Please sign in to comment.