Skip to content

Commit 8379bbe

Browse files
authored
Merge pull request #170 from vim-jp/feature/fix-config
fix package config
2 parents 7acaf3a + 55a02b9 commit 8379bbe

File tree

5 files changed

+93
-3135
lines changed

5 files changed

+93
-3135
lines changed

2025/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
"astro": "^5.2.5",
1414
"astro-google-fonts-optimizer": "^0.2.2"
1515
},
16+
"devDependencies": {
17+
"@astrojs/ts-plugin": "^1.10.4",
18+
"typescript": "^5.7.3"
19+
},
1620
"pnpm": {
1721
"executionEnv": {
1822
"nodeVersion": "22.13.1"

2025/pnpm-lock.yaml

Lines changed: 78 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2025/tsconfig.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
{
22
"extends": "astro/tsconfigs/strict",
3+
"compilerOptions": {
4+
"baseUrl": ".",
5+
"paths": {
6+
"@/*": ["src/*"]
7+
},
8+
"plugins": [
9+
{
10+
"name": "@astrojs/ts-plugin"
11+
}
12+
]
13+
},
314
"include": [".astro/types.d.ts", "**/*"],
415
"exclude": ["dist"]
516
}

package.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)