290f4bc1cb
* fix: tsconfig emissions * fix: avoid importing app state in lib * fix: export theming * fix: asset resolutions * fix: bundle widget * test: update failing snapshots * fix: maintain i18n for cosmos * fix: use npm-compatible aliasing * fix: include fonts in bundle
28 lines
763 B
JSON
28 lines
763 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"downlevelIteration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": ["react-spring", "jest"]
|
|
},
|
|
"exclude": ["node_modules", "cypress"],
|
|
}
|