mirror of
https://github.com/litruv/AudioSort.git
synced 2026-07-24 02:36:01 +10:00
- Updated .gitignore to include additional files and directories for better exclusion. - Modified package.json to add new build scripts and electron-builder configuration. - Refactored MainApp.ts for improved IPC handler management and code formatting. - Cleaned up LibraryService.ts by removing unnecessary logging and comments. - Adjusted App.tsx and FileList.tsx for code clarity and consistency. - Removed redundant console logs in TagEditor.tsx and CategoryUIState.ts. - Updated tsconfig files for module resolution consistency.
17 lines
318 B
JSON
17 lines
318 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node10",
|
|
"outDir": "dist/main",
|
|
"rootDir": "src",
|
|
"types": ["node"],
|
|
"composite": true
|
|
},
|
|
"include": [
|
|
"src/main/**/*.ts",
|
|
"src/preload/**/*.ts",
|
|
"src/shared/**/*.ts"
|
|
]
|
|
}
|