Skip to content

Commit

Permalink
chore(tsconfig): 🧹 update compiler options
Browse files Browse the repository at this point in the history
  • Loading branch information
navin-moorthy committed Jun 29, 2023
1 parent f831299 commit eadb3da
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": true,
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext", "esnext.asynciterable"],
"typeRoots": ["./node_modules/@types", "@types"],
"moduleResolution": "NodeNext",
"module": "NodeNext",
"strict": true,
"downlevelIteration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "ESNext",
"moduleResolution": "node",
"noEmit": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2021",
"typeRoots": ["./node_modules/@types", "@types"]
"allowJs": true
},
"exclude": ["node_modules"],
"include": ["./**/*"],
Expand Down

0 comments on commit eadb3da

Please sign in to comment.