yufan.me/tsconfig.json
Yufan Sheng 0126b71722
feat: add upyun support. move images to upyun on build. (#45)
* style: better reply button.

* feat: add astro badge.

* chore: drop useless styles.

* feat: use new options.ts for global configuration.

* fix: the invalid import.meta.env.PROD in astro build.

* feat: move og to new assert prefix.

* chore: add better og description.

* chore: make sure all the images link could be correctly replaced.

* feat: add upyun uploader.
2024-11-15 14:53:43 +08:00

16 lines
328 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"strict": true,
"target": "ESNext",
"module": "ESNext",
"strictNullChecks": true,
"paths": {
"@/options": ["./options.ts"],
"@/*": ["src/*"]
}
}
}