Skip to content

Commit 2131857

Browse files
committed
chore: update
1 parent 52150d8 commit 2131857

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export default [
2424
ignores: [
2525
".temp",
2626
"**/node_modules",
27+
"coverage",
2728
"src/html/util/alternative-cr.ts",
2829
"src/html/util/attribute-names.ts",
2930
"src/html/util/entities.ts",

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@
3737

3838
"skipLibCheck": true
3939
},
40-
"include": ["src/**/*.ts"]
40+
"include": ["src/**/*.ts"],
41+
"references": [{ "path": "./tsconfig.test.json" }]
4142
}

tsconfig.test.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4+
"composite": true,
5+
"paths": {
6+
"*": ["typings/*"]
7+
},
8+
"module": "esnext",
49
"moduleResolution": "Bundler"
510
},
611
"include": ["test/**/*.ts", "vitest.config.ts"]

0 commit comments

Comments
 (0)