Skip to content

Commit

Permalink
Merge pull request #24 from tatsutakein-jp/feature/tsconfig
Browse files Browse the repository at this point in the history
chore: tsconfig をアップデート
  • Loading branch information
tatsutakein authored Jul 3, 2024
2 parents 497d601 + 65af9d4 commit 5a0d74b
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 5a0d74b

Please sign in to comment.