mirror of
https://github.com/Ryubing/Website.git
synced 2025-05-12 18:50:37 +01:00
18 lines
721 B
JSON
18 lines
721 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"baseUrl": ".", // Base directory for resolving modules
|
|
"paths": {
|
|
"@lib/*": ["src/lib/*"] // Alias for src/lib folder
|
|
},
|
|
"outDir": "dist",
|
|
"types": ["node"], // Add Node.js types for using fs, path, etc.
|
|
"lib": ["ESNext", "DOM"] // Include modern JavaScript and DOM library support
|
|
},
|
|
"include": [
|
|
".astro/types.d.ts", // Keep Astro types
|
|
"**/*", // Include everything in the project
|
|
"src/lib/**/*" // Explicitly include the src/lib folder
|
|
],
|
|
"exclude": ["dist"] // Exclude the dist folder
|
|
}
|