mirror of
https://github.com/lossless-group/image-gin.git
synced 2026-07-22 17:00:28 +00:00
Magnific after rebranding from Freepik On branch master Your branch is up to date with 'origin/master'. Changes to be committed: new file: CLAUDE.md new file: context-v/Chore-to-Update-All-Dependencies.md new file: context-v/changelogs/2026-05-02_01.md modified: main.ts modified: package.json modified: pnpm-lock.yaml new file: pnpm-workspace.yaml renamed: src/modals/FreepikModal.ts -> src/modals/MagnificModal.ts deleted: src/services/freepikService.ts modified: src/services/imageCacheService.ts new file: src/services/magnificService.ts modified: src/services/recraftImageService.ts modified: src/settings/settings.ts modified: src/styles/current-file-modal.css renamed: src/styles/freepik.css -> src/styles/magnific.css modified: src/utils/logger.ts modified: styles.css modified: tsconfig.json
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
/* Base Options */
|
|
"esModuleInterop": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM"],
|
|
"types": ["node"],
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
|
|
/* Strict Type-Checking */
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
/* Module Resolution */
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowImportingTsExtensions": true,
|
|
|
|
/* Emit */
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"removeComments": true,
|
|
"noEmitOnError": true,
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts",
|
|
"**/*.test.ts"
|
|
]
|
|
}
|