Files
bitmappery/tsconfig.app.json
Igor Zinken 622d13825c Migrate project to Vue 3 (#42)
* 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
2025-02-08 10:27:48 +01:00

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"
]
}