Skip to content

Commit

Permalink
doc: Update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed May 20, 2024
1 parent e5857da commit d4f08c6
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,19 @@
{
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"skipLibCheck": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"module": "ES6",
"moduleResolution": "node",
"noEmit": false,
"target": "ES6",
"declaration": true,
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"strict": true,
"noImplicitAny": false,
"skipLibCheck": true,
"declaration": true,
"emitDeclarationOnly": true
},
"exclude": ["website", "packages/*/cjs", "packages/*/esm"]
}

0 comments on commit d4f08c6

Please sign in to comment.