ente/web/packages/build-config/tsconfig-next.json
Manav Rathi 38d6464f55
muppets
2024-05-25 18:13:11 +05:30

15 lines
504 B
JSON

{
/* 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"],
/* Next.js insists on adding these. Sigh. */
"allowJs": true,
"incremental": true
},
/* Next.js insists on adding this, even though we don't need it. */
"exclude": ["node_modules"]
}