- Add SqlServerService and MySqlService for database persistence - Implement IPC handlers for file, extractor, cleaner, and database operations - Define IPC API types and update preload script - Create ExtractorPage UI with OrderNumberInput component - Add unit and integration tests for MySQL and SQL Server - Update vitest config with path aliases
21 lines
407 B
JSON
21 lines
407 B
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
|
|
"include": [
|
|
"src/renderer/src/env.d.ts",
|
|
"src/renderer/src/**/*",
|
|
"src/renderer/src/**/*.tsx",
|
|
"src/preload/*.d.ts",
|
|
"src/main/types/*.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@renderer/*": [
|
|
"src/renderer/src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|