Skip to content

Commit f4d38fb

Browse files
committed
Sync settings
1 parent efdd9f5 commit f4d38fb

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ module.exports = {
7575
}],
7676
'vue/singleline-html-element-content-newline': ['error', {
7777
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
78-
ignores: ['ExternalLink', 'router-link', ...INLINE_ELEMENTS],
78+
ignores: ['ExternalLink', 'router-link', 'pre', ...INLINE_ELEMENTS],
7979
}],
8080

8181
'@typescript-eslint/prefer-literal-enum-member': 'off',

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ dist*
103103
.tern-port
104104

105105
# Playwright
106+
tests/e2e/results/
106107
/test-results/
107108
/playwright-report/
108109
/playwright/.cache/

tsconfig.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"ts-node": {
3-
"transpileOnly": true
3+
"transpileOnly": true,
4+
"compilerOptions": {
5+
"module": "NodeNext",
6+
},
47
},
58
"compilerOptions": {
69
"strict": true,
@@ -26,15 +29,17 @@
2629
"outDir": "dist",
2730
"baseUrl": ".",
2831
"paths": {
29-
"@/*": ["./src/*"]
30-
}
32+
"@/*": ["./src/*"],
33+
},
3134
},
3235
"exclude": [
36+
"**/raw/**/*",
37+
"**/*.html",
3338
"node_modules",
34-
"dist"
39+
"dist",
3540
],
3641
"include": [
3742
"**/*",
38-
".eslintrc.cjs"
39-
]
43+
".eslintrc.cjs",
44+
],
4045
}

0 commit comments

Comments
 (0)