Skip to content

Commit

Permalink
chore: 🔨 tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
dfrnoch committed Sep 26, 2023
1 parent af4e154 commit d337dbe
Showing 1 changed file with 6 additions and 29 deletions.
35 changes: 6 additions & 29 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
{
"compilerOptions": {
"target": "ES2020",
"target": "ES2022",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
Expand All @@ -25,32 +21,13 @@
/* Path aliases */
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
],
// "@shared/*": [
// "src/shared/*"
// ],
// "@assets/*": [
// "src/assets/*"
// ],
// "@store": [
// "src/store/index.tsx"
// ],
// "@utils/*": [
// "src/utils/*"
// ],
// "@i18n/*": [
// "src/i18n/*"
// ],
},
"@/*": ["src/*"]
}
},
"include": [
"src"
],
"include": ["src"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}
}

0 comments on commit d337dbe

Please sign in to comment.