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 1f6e1e8 commit 56f98aaCopy full SHA for 56f98aa
src/core/utils.ts
@@ -1,5 +1,5 @@
1
import { parse } from 'node:path'
2
-import minimatch from 'minimatch'
+import {minimatch} from 'minimatch'
3
import resolve from 'resolve'
4
import { slash, toArray } from '@antfu/utils'
5
import {
tsconfig.json
@@ -2,12 +2,16 @@
"compilerOptions": {
"target": "es2017",
"module": "esnext",
- "lib": ["esnext"],
+ "lib": ["esnext", "DOM"],
6
"moduleResolution": "node",
7
"esModuleInterop": true,
8
"strict": true,
9
"strictNullChecks": true,
10
"resolveJsonModule": true,
11
+ "skipLibCheck": true,
12
"jsx": "preserve"
- }
13
+ },
14
+ "exclude": [
15
+ "examples/**"
16
+ ]
17
}
0 commit comments