Skip to content

Commit d015b30

Browse files
committed
fix: update module type to NodeNext in tsconfig.json
1 parent b14455b commit d015b30

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

tsconfig.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"compilerOptions": {
33
"target": "ES2020",
4-
"module": "CommonJS",
4+
"module": "NodeNext",
55
"outDir": "dist",
66
"rootDir": ".",
77
"esModuleInterop": true,
88
"forceConsistentCasingInFileNames": true,
99
"strict": true,
10-
"skipLibCheck": true
11-
}
10+
"skipLibCheck": true,
11+
"types": ["node", "vitest/globals"]
12+
},
13+
"include": ["src"],
14+
"exclude": ["node_modules", "dist", "tests", "scripts"]
1215
}

0 commit comments

Comments
 (0)