Initial import of Forge app

This commit is contained in:
2026-08-29 12:30:19 +03:00
commit e637634c59
118 changed files with 17355 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": ["ES2020", "ES2021.String"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "./dist",
"rootDir": ".",
"resolveJsonModule": true
},
"include": ["index.ts", "server/**/*.ts"],
"exclude": ["node_modules", "client", "dist", "extension", "**/*.test.ts"]
}