Create a next specific base

The include still needs to be specified in the importing tsconfig otherwise the
"." is resolved relative to the @/build-config.
This commit is contained in:
Manav Rathi 2024-05-24 18:11:04 +05:30
parent 74bb169f0d
commit 3b8c48e92d
No known key found for this signature in database
4 changed files with 12 additions and 21 deletions

View file

@ -1,11 +1,6 @@
{
"extends": "@/build-config/tsconfig-typecheck.json",
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.d.ts",
"../../packages/shared/themes/mui-theme.d.ts"
],
"extends": "@/build-config/tsconfig-next.json",
"include": ["src", "../../packages/shared/themes/mui-theme.d.ts"],
// Temporarily disable some things to get the existing code to compile
// without warnings.
"compilerOptions": {
@ -13,9 +8,6 @@
"jsxImportSource": "@emotion/react",
/* Also indicate expectation of a WebWorker runtime */
"lib": ["ESnext", "DOM", "DOM.Iterable", "WebWorker"],
"verbatimModuleSyntax": false,
"resolveJsonModule": false,

View file

@ -0,0 +1,8 @@
{
/* A base TSConfig for typechecking our Next.js apps and packages. */
"extends": "@/build-config/tsconfig-typecheck.json",
"compilerOptions": {
/* Also indicate expectation of a WebWorker runtime */
"lib": ["ESnext", "DOM", "DOM.Iterable", "WebWorker"]
}
}

View file

@ -1,9 +1,4 @@
{
"extends": "@/build-config/tsconfig-typecheck.json",
"compilerOptions": {
/* Also indicate expectation of a WebWorker runtime */
"lib": ["ESnext", "DOM", "DOM.Iterable", "WebWorker"]
},
/* Typecheck all files with the given extensions (here or in subfolders) */
"extends": "@/build-config/tsconfig-next.json",
"include": [".", "../../packages/next/global-electron.d.ts"]
}

View file

@ -1,8 +1,4 @@
{
"extends": "@/build-config/tsconfig-typecheck.json",
"compilerOptions": {
/* Also indicate expectation of a WebWorker runtime */
"lib": ["ESnext", "DOM", "DOM.Iterable", "WebWorker"]
},
"extends": "@/build-config/tsconfig-next.json",
"include": ["."]
}