rename apps/main -> apps/www

This commit is contained in:
Kim, Jimin 2025-03-17 05:58:23 +09:00
parent 21c3ff3872
commit 7db6fada2a
Signed by: pomp
GPG key ID: D3932F82A0667A3B
37 changed files with 0 additions and 0 deletions

19
apps/www/tsconfig.json Normal file
View file

@ -0,0 +1,19 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"verbatimModuleSyntax": false,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"baseUrl": "./src",
"paths": {
"$/*": ["./*"]
}
}
}