1/** 2 * This configuration only exists for the API Extractor tool and for VSCode to use. It is NOT the tsconfig used for compilation. 3 * For CJS builds, `tsconfig.cjs.json` is used, and for ESM, it's `tsconfig.esm.json`. 4 * See the details in CONTRIBUTING.md that describes our TypeScript setup. 5 */ 6{ 7 "extends": "./tsconfig.base.json", 8 "compilerOptions": { 9 "noEmit": true, 10 /* This module setting is just for VSCode so it doesn't throw error when we 11 use dynamic imports. 12 */ 13 "module": "esnext" 14 }, 15 "include": ["src"] 16} 17