Initial commit

This commit is contained in:
Replit Agent
2026-05-28 23:37:31 +00:00
commit 2246770e5b
114 changed files with 13553 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"extends": "../../tsconfig.base.json",
"include": ["src/**/*", "mockupPreviewPlugin.ts", "vite.config.ts"],
"exclude": ["node_modules", "build", "dist", "**/*.test.ts"],
"compilerOptions": {
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo",
"noEmit": true,
"lib": ["es2022", "dom", "dom.iterable"],
"jsx": "preserve",
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"types": ["node", "vite/client"],
"paths": {
"@/*": ["./src/*"]
}
}
}