Skip to content

Commit

Permalink
Sync settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinovantes committed Sep 26, 2023
1 parent efdd9f5 commit f4d38fb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ module.exports = {
}],
'vue/singleline-html-element-content-newline': ['error', {
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
ignores: ['ExternalLink', 'router-link', ...INLINE_ELEMENTS],
ignores: ['ExternalLink', 'router-link', 'pre', ...INLINE_ELEMENTS],
}],

'@typescript-eslint/prefer-literal-enum-member': 'off',
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ dist*
.tern-port

# Playwright
tests/e2e/results/
/test-results/
/playwright-report/
/playwright/.cache/
17 changes: 11 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"ts-node": {
"transpileOnly": true
"transpileOnly": true,
"compilerOptions": {
"module": "NodeNext",
},
},
"compilerOptions": {
"strict": true,
Expand All @@ -26,15 +29,17 @@
"outDir": "dist",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
"@/*": ["./src/*"],
},
},
"exclude": [
"**/raw/**/*",
"**/*.html",
"node_modules",
"dist"
"dist",
],
"include": [
"**/*",
".eslintrc.cjs"
]
".eslintrc.cjs",
],
}

0 comments on commit f4d38fb

Please sign in to comment.