Files
ente/web/packages/shared/tsconfig.json
Manav Rathi 510f94fc51 lf
2024-11-20 11:21:49 +05:30

30 lines
952 B
JSON

{
"extends": "@/build-config/tsconfig-next.json",
"compilerOptions": {
/* Set the base directory from which to resolve bare module names. */
"baseUrl": ".",
/* MUI doesn't work with exactOptionalPropertyTypes yet. */
"exactOptionalPropertyTypes": false,
/* Override tsconfig-next.json (TODO: Remove me) */
"verbatimModuleSyntax": false,
/* Override tsconfig-next.json (TODO: Remove me) */
"noImplicitAny": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": false,
"noUncheckedIndexedAccess": false,
"strictNullChecks": false,
"useUnknownInCatchVariables": false
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"themes/mui-theme.d.ts",
"../base/log-web.ts",
"../base/global-electron.d.ts"
],
"exclude": ["**/node_modules", "**/.*/"]
}