feat: remove extension in import

This commit is contained in:
2026-05-31 22:54:11 +09:00
parent 737019de8d
commit b87e735cb9
4 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
{
"compilerOptions": {
"ignoreDeprecations": "6.0",
// Environment setup & latest features
"lib": ["ESNext"],
"target": "ESNext",
@@ -10,6 +11,10 @@
"types": ["bun"],
// Bundler mode
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,