Initial setup

This commit is contained in:
2023-09-08 22:59:05 -05:00
parent c5233b7088
commit 883078fdbc
14 changed files with 6383 additions and 56 deletions

View File

@@ -1,3 +1,22 @@
{
"extends": "./.nitro/types/tsconfig.json"
"compilerOptions": {
"target": "ES2020",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
}
},
}