2020-07-14 15:57:29 +00:00
|
|
|
/**
|
2021-05-21 10:05:41 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
2017-10-10 05:31:40 +00:00
|
|
|
{
|
2020-07-14 15:57:29 +00:00
|
|
|
"extends": "./tsconfig.base.json",
|
2017-10-10 05:31:40 +00:00
|
|
|
"compilerOptions": {
|
2021-05-21 10:05:41 +00:00
|
|
|
"noEmit": true,
|
|
|
|
"module": "esnext"
|
2017-10-10 05:31:40 +00:00
|
|
|
},
|
2022-02-10 13:34:36 +00:00
|
|
|
"include": ["src"]
|
2017-10-10 05:31:40 +00:00
|
|
|
}
|