Local metadata link commit at 2025-06-06 15:40:57 — file:///home/mrhavens/git-local-repos/git-sigil.git

This commit is contained in:
Mark Randall Havens 2025-06-06 15:40:57 -05:00
commit b548318725
134 changed files with 15789 additions and 0 deletions

24
tsconfig.json Normal file
View file

@ -0,0 +1,24 @@
{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"module": "ES2022",
"lib": ["es2020"],
"target": "es2019",
"isolatedModules": true,
"resolveJsonModule": true,
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"checkJs": true,
"baseUrl": ".",
"paths": {
"$components": ["./src/components"],
"$": ["./src"]
},
"types": ["astro/env"],
"strictNullChecks": true
},
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.ts", "src/pages/rss.xml.js"],
}