Skip to content

Commit

Permalink
chore: sort config ascending
Browse files Browse the repository at this point in the history
  • Loading branch information
emersonlaurentino committed Jun 14, 2022
1 parent 2375bab commit 846e5ab
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions packages/ui/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"include": ["src", "types"],
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": ["dom", "esnext"],
"jsx": "react",
"declaration": true,
"sourceMap": true,
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"strict": true,
"jsx": "react",
"lib": ["dom", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"esModuleInterop": true,
"outDir": "./dist",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
"sourceMap": true,
"strict": true,
"target": "esnext"
},
"include": ["src", "types"]
}

0 comments on commit 846e5ab

Please sign in to comment.