mirror of
https://github.com/igorski/bitmappery.git
synced 2026-07-16 03:48:47 +02:00
* Initial update of dependencies * Fix ToggleButton import * Prepare i18n and vitest * Replace deprecated Vue set/delete syntax * Fix async component loading, address errors caught by failing unit tests * Fix type errors * Fix bug with layer panel * Fixed unit tests * Fixed cloud file selectors * Fixed broken notifications * Fixed broken color picker * Fix TypeScript configuration files * Fixed unit test runner configuration * Fixed type errors in cloud file selector * Restored broken tooltips * Show error message on import failure. Ignore Photoshop layers that fail to import * Solved issues with deprecated Vue 2 syntax * Fixed bug with compressing documents * Fix layer refresh
22 lines
500 B
JSON
22 lines
500 B
JSON
{
|
|
"include": [ "env.d.ts", "src/**/*", "src/**/*.vue" ],
|
|
"exclude": [],
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"composite": true,
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"paths": {
|
|
"@/*": [ "./src/*", "./tests/*" ]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"**/node_modules"
|
|
]
|
|
}
|