16 lines
475 B
JSON
16 lines
475 B
JSON
{
|
|
"extends": "@/build-config/tsconfig-next.json",
|
|
"compilerOptions": {
|
|
/* Set the base directory from which to resolve bare module names. */
|
|
"baseUrl": "./src",
|
|
/* MUI doesn't work with exactOptionalPropertyTypes yet. */
|
|
"exactOptionalPropertyTypes": false
|
|
},
|
|
"include": [
|
|
"src",
|
|
"next-env.d.ts",
|
|
"../../packages/base/global-electron.d.ts",
|
|
"../../packages/shared/themes/mui-theme.d.ts"
|
|
]
|
|
}
|