chore: initialize project with package.json and tsconfig.json

- Added package.json for project dependencies and scripts
- Included tsconfig.json for TypeScript configuration
This commit is contained in:
LOUIS POTEVIN
2026-06-24 14:00:13 +02:00
parent f2a155c947
commit 15bc86b5a6
6 changed files with 4857 additions and 135 deletions
+8
View File
@@ -0,0 +1,8 @@
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"types": ["three"]
}
}