Yufan Sheng
901cd8219c
* 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.
16 lines
328 B
JSON
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/*"]
|
|
}
|
|
}
|
|
}
|