chore: adding types node package to pnpm catalog (#7923)

This commit is contained in:
sriram veeraghanta
2025-10-08 18:42:53 +05:30
committed by GitHub
parent 3cbb60417c
commit 5d60d6d702
18 changed files with 223 additions and 219 deletions

View File

@@ -0,0 +1,17 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./base.json",
"compilerOptions": {
"module": "ES2022",
"moduleResolution": "Bundler",
"jsx": "react-jsx",
"target": "ES2022",
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true
}
}