f1a6b8d66d
* 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'`).
12 lines
186 B
JSON
12 lines
186 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"exclude": [
|
|
"mitt/dist"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"outDir": "../lib/esm/vendor",
|
|
"module": "esnext"
|
|
}
|
|
}
|