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