ente/web/apps/auth/tsconfig.json
2024-05-25 07:35:07 +05:30

28 lines
817 B
JSON

{
"extends": "@/build-config/tsconfig-next.json",
"include": [
"src",
"next-env.d.ts",
"../../packages/next/global-electron.d.ts",
"../../packages/shared/themes/mui-theme.d.ts"
],
// Temporarily disable some things to get the existing code to compile
// without warnings.
"compilerOptions": {
"baseUrl": "./src",
"jsxImportSource": "@emotion/react",
"strict": true,
"strictNullChecks": true,
/* Stricter than strict */
"noImplicitReturns": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
/* e.g. makes array indexing returns undefined */
"noUncheckedIndexedAccess": false,
"exactOptionalPropertyTypes": false
}
}