Skip to content

Commit 120fc18

Browse files
committed
fix: update tsconfig.json
1 parent 483ffd5 commit 120fc18

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

evals/tsconfig.json

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
{
2-
"extends": "../tsconfig.json",
3-
"include": [
4-
"**/*"
5-
],
62
"compilerOptions": {
3+
"target": "ES2019",
4+
"module": "ES2022",
5+
"moduleResolution": "bundler",
6+
"lib": ["ESNext"],
7+
"strict": true,
8+
"esModuleInterop": true,
9+
"allowSyntheticDefaultImports": true,
10+
"skipLibCheck": true,
11+
"noEmit": true,
712
"types": ["vitest/globals"]
8-
}
13+
},
14+
"include": [
15+
"*.ts"
16+
]
917
}

tsconfig.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,10 @@
44
"module": "ES2022",
55
"skipLibCheck": true,
66
},
7+
"include": [
8+
"src/**/*"
9+
],
10+
"exclude": [
11+
"evals/**/*"
12+
]
713
}

0 commit comments

Comments
 (0)