chore: remove all .jsx files from Frontend src

Vite resolves .tsx before .jsx (per extensions order in vite.config.ts),
so .jsx files were never loaded at runtime. Switching to TSX-only source.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-07-03 21:40:59 -04:00
parent 00fd213291
commit e60110226b
167 changed files with 15 additions and 33539 deletions

View File

@@ -0,0 +1,15 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const dotenv_1 = __importDefault(require("dotenv"));
const path_1 = __importDefault(require("path"));
const config_1 = require("prisma/config");
dotenv_1.default.config({ path: path_1.default.resolve(__dirname, ".env") });
exports.default = (0, config_1.defineConfig)({
schema: "prisma/schema.prisma",
datasource: {
url: (0, config_1.env)("DATABASE_URL"),
},
});