We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 483ffd5 commit 120fc18Copy full SHA for 120fc18
evals/tsconfig.json
@@ -1,9 +1,17 @@
1
{
2
- "extends": "../tsconfig.json",
3
- "include": [
4
- "**/*"
5
- ],
6
"compilerOptions": {
+ "target": "ES2019",
+ "module": "ES2022",
+ "moduleResolution": "bundler",
+ "lib": ["ESNext"],
7
+ "strict": true,
8
+ "esModuleInterop": true,
9
+ "allowSyntheticDefaultImports": true,
10
+ "skipLibCheck": true,
11
+ "noEmit": true,
12
"types": ["vitest/globals"]
- }
13
+ },
14
+ "include": [
15
+ "*.ts"
16
+ ]
17
}
tsconfig.json
@@ -4,4 +4,10 @@
"module": "ES2022",
"skipLibCheck": true,
},
+ "src/**/*"
+ ],
+ "exclude": [
+ "evals/**/*"
0 commit comments