30 lines
952 B
JSON
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", "**/.*/"]
|
|
}
|