puppeteer/vendor/tsconfig.cjs.json
Jack Franklin f1a6b8d66d
chore: vendor Mitt & update project structure (#6209)
* chore: vendor Mitt into src/common/third-party

As discussed in #6203 we need to vendor our common dependencies in so
that when we ship an ESM build all imports point to file paths and do
not rely on Node resolution (e.g. a browser does not understand `import
mitt from 'mitt'`).
2020-07-14 16:57:29 +01:00

12 lines
188 B
JSON

{
"extends": "../tsconfig.base.json",
"exclude": [
"mitt/dist"
],
"compilerOptions": {
"composite": true,
"outDir": "../lib/cjs/vendor",
"module": "CommonJS"
}
}