13 lines
413 B
JSON
13 lines
413 B
JSON
|
/**
|
||
|
* This configuration only exists for the API Extractor tool and for VSCode to use. It is NOT the tsconfig used for compilation.
|
||
|
* For CJS builds, `tsconfig.cjs.json` is used, and for ESM, it's `tsconfig.esm.json`.
|
||
|
* See the details in CONTRIBUTING.md that describes our TypeScript setup.
|
||
|
*/
|
||
|
{
|
||
|
"extends": "../tsconfig.base.json",
|
||
|
"compilerOptions": {
|
||
|
"noEmit": true,
|
||
|
"module": "CommonJS"
|
||
|
}
|
||
|
}
|