summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 34dd6f7ef6e848a966dde3b06651093f0540b426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  // Change this to match your project
  "include": ["*.js"],
  "compilerOptions": {
    // Tells TypeScript to read JS files, as
    // normally they are ignored as source files
    "allowJs": true,
    // Generate d.ts files
    "declaration": true,
    // This compiler run should
    // only output d.ts files
    "emitDeclarationOnly": true,
    // go to js file when using IDE functions like
    // "Go to Definition" in VSCode
    "declarationMap": true
  }
}