13 lines
411 B
JSON
13 lines
411 B
JSON
{
|
|
"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) */
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"../../packages/next/global-electron.d.ts"
|
|
]
|
|
}
|