mirror of
https://github.com/aliir74/copy-image-hotkey.git
synced 2026-07-22 06:50:36 +00:00
Copy Image Hotkey 1.0.0 — Cmd+C copies the actual image when an image embed is selected in source mode. Built off the official sample-plugin template; source is in src/main.ts, builds main.js via esbuild. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
30 lines
584 B
JSON
30 lines
584 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"strictBindCallApply": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|