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:
parent
74bb169f0d
commit
3b8c48e92d
4 changed files with 12 additions and 21 deletions
|
@ -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,
|
||||
|
||||
|
|
8
web/packages/build-config/tsconfig-next.json
Normal file
8
web/packages/build-config/tsconfig-next.json
Normal 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"]
|
||||
}
|
||||
}
|
|
@ -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"]
|
||||
}
|
||||
|
|
|
@ -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": ["."]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue