You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Base TS config file for all other TS configs in repo.
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "node",
"lib": [
"ES2022"
],
"target": "ES2022",
"esModuleInterop": true,
// No code minimization/uglification is happening, thus preserving source maps does not bring much value.
// Furthermore, because .js and .mjs files will reside in the same directory, there will be a little hassle on the mapping file names + their refs in source.
"sourceMap": false,
"strict": true,
"exactOptionalPropertyTypes": true,
// We export whole src folder, so no need to include declaration files to dist folder.