Skip to content

Commit 76dac5b

Browse files
committed
chore(2025): add ts-plugin
1 parent 7436629 commit 76dac5b

File tree

3 files changed

+89
-7
lines changed

3 files changed

+89
-7
lines changed

2025/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
"astro": "^5.2.5",
1414
"astro-google-fonts-optimizer": "^0.2.2"
1515
},
16+
"devDependencies": {
17+
"@astrojs/ts-plugin": "^1.10.4"
18+
},
1619
"pnpm": {
1720
"executionEnv": {
1821
"nodeVersion": "22.13.1"

2025/pnpm-lock.yaml

Lines changed: 75 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
}

0 commit comments

Comments
 (0)