jsconfig.json 182 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "module": "Node16",
  4. "target": "ES2022",
  5. "checkJs": true, /* Typecheck .js files. */
  6. "lib": [
  7. "ES2022"
  8. ]
  9. },
  10. "exclude": [
  11. "node_modules"
  12. ]
  13. }