Initial commit

This commit is contained in:
2024-12-28 09:01:18 +09:00
commit 8b6d876c10
9 changed files with 506 additions and 0 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true
}
}