tsconfig

Installation
SKILL.md

Add a tsconfig.json with these settings:

{
  "compilerOptions": {
    "target": "ES2020",
    "module": "ESNext",
    "moduleResolution": "bundler",
    "strict": true,
    "noEmit": true,
    "types": ["chrome", "vitest/globals"],
    "lib": ["ES2020", "DOM", "DOM.Iterable"]
  },
  "include": ["src"]
}

Key options:

Installs
15
First Seen
Apr 8, 2026
tsconfig — gkwa/volcanicviper