/ api / jsconfig.json
jsconfig.json
 1  // This file can contain .js-specific Typescript compiler config.
 2  {
 3    "compilerOptions": {
 4      "target": "esnext",
 5  
 6      "noEmit": true,
 7  /*
 8      // The following flags are for creating .d.ts files:
 9      "noEmit": false,
10      "declaration": true,
11      "emitDeclarationOnly": true,
12  */
13      "downlevelIteration": true,
14      "strictNullChecks": true,
15      "moduleResolution": "node",
16    },
17    "include": ["src/**/*.js", "test/**/*.js", "exported.js", "globals.d.ts"],
18  }