Skip to content

Commit

Permalink
refactor: changed compilerOptions to alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarleonnogales committed Nov 7, 2023
1 parent dd71c3f commit bfe9a4a
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
{
"compilerOptions": {
"strict": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ES2022",
"verbatimModuleSyntax": true,
"allowJs": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"isolatedModules": true,
"lib": ["ES2022", "dom", "dom.iterable"],
"module": "ESNext",
"moduleDetection": "force",
"moduleResolution": "Bundler",
"module": "ESNext",
"noEmit": true,
"lib": ["ES2022", "dom", "dom.iterable"],
"declaration": true,
"isolatedModules": true
"noUncheckedIndexedAccess": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2022",
"verbatimModuleSyntax": true
},
"include": ["./src/**/*"],
"exclude": ["./src/__tests__/**/*"]
Expand Down

0 comments on commit bfe9a4a

Please sign in to comment.