mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 14:32:10 +01:00
- Added @analogjs/vite-plugin-angular and @analogjs/vitest-angular to devDependencies. - Updated @nx/vite to version 20.1.4. - Added @vitest/coverage-v8 and @vitest/ui to devDependencies. - Added jsdom to devDependencies. - Added vite and vitest to devDependencies. - Updated tsconfig.base.json to include new paths for shared libraries. - Created vitest.workspace.ts for vitest configuration. Refs: #5135
38 lines
609 B
Plaintext
38 lines
609 B
Plaintext
{
|
|
"singleQuote": true,
|
|
"semi": true,
|
|
"trailingComma": "all",
|
|
"tabWidth": 2,
|
|
"bracketSpacing": true,
|
|
"printWidth": 80,
|
|
"endOfLine": "auto",
|
|
"arrowParens": "always",
|
|
"quoteProps": "consistent",
|
|
"overrides": [
|
|
{
|
|
"files": "*.html",
|
|
"options": {
|
|
"parser": "html"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.component.html",
|
|
"options": {
|
|
"parser": "angular"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.scss",
|
|
"options": {
|
|
"singleQuote": false
|
|
}
|
|
},
|
|
{
|
|
"files": "*.json",
|
|
"options": {
|
|
"printWidth": 80
|
|
}
|
|
}
|
|
]
|
|
}
|