Skip to content

Commit

Permalink
chore: tsconfig をアップデート
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsutakein committed Jul 3, 2024
1 parent 497d601 commit 65af9d4
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
{
"extends": "astro/tsconfigs/strict"
}
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ES2022",
"resolveJsonModule": true,
"isolatedModules": true,
"moduleDetection": "force",
"moduleResolution": "Bundler",
"strict": true,
"noUncheckedIndexedAccess": true,
"module": "ESNext",
"noEmit": true,
"allowJs": true,
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
}
},
"exclude": [
"node_modules"
]
}

0 comments on commit 65af9d4

Please sign in to comment.