Skip to content

Commit

Permalink
tweak tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-pereira committed Feb 17, 2024
1 parent dc1c36a commit 706b079
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,27 @@
{
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist",
"typeRoots": ["./taaypes", "./node_modules/@types"],
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"target": "es5",
"typeRoots": ["./types", "./node_modules/@types"],
"baseUrl": ".",
"paths": {
"@utilities/*": ["src/utilities/*"],
"@components/*": ["src/components/*"],
"@hooks/*": ["src/hooks/*"],
"@customTypes/*": ["src/customTypes/*"]
},
"allowJs": true,
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true
"jsx": "react-jsx"
}
}

0 comments on commit 706b079

Please sign in to comment.