This commit is contained in:
Manav Rathi 2024-05-10 14:34:24 +05:30
parent fa9a0cc09f
commit f5eb997768
No known key found for this signature in database

View file

@ -1,5 +1,13 @@
{
"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"]
"include": [
"**/*.ts",
"**/*.tsx",
"../../packages/next/global-electron.d.ts"
]
}