Skip to content

Commit

Permalink
fix: tsconfig 원래대로 되돌리기
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene028 committed Jul 20, 2024
1 parent 489a401 commit c8bdcc8
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,14 @@
"esModuleInterop": true,
"incremental": false,
"isolatedModules": true,
"jsx": "react-jsx",
"outDir": "dist",
"allowImportingTsExtensions": true,
"emitDeclarationOnly": true,
"module": "ES2015",
"moduleResolution": "Bundler",
"baseUrl": ".",
"lib": ["es2022", "DOM", "DOM.Iterable"],
"module": "NodeNext",
"moduleDetection": "force",
"moduleResolution": "NodeNext",
"noUncheckedIndexedAccess": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2022",
"types": ["@testing-library/jest-dom"],
"paths": {
"@/*": ["src/*"],
"@styled-system/*": ["./styled-system/*"]
}
"target": "ES2022"
}
}

0 comments on commit c8bdcc8

Please sign in to comment.