Revert change in api

pull/2413/head
Jérémy Rialland 2022-11-29 14:20:39 +01:00 committed by Jérémy Rialland
parent 0878bf98d3
commit 6b1757a3cd
1 changed files with 3 additions and 4 deletions

View File

@ -2,9 +2,8 @@
"compilerOptions": {
/* Basic Options */
"incremental": true,
"target": "ESNext",
"target": "ES2020",
"module": "NodeNext",
"rootDir": "./",
"outDir": "dist",
"declaration": true,
@ -39,6 +38,6 @@
"ts-node": {
"esm": true
},
"include": ["source", "vitest.config.ts"],
"exclude": ["**/dist"]
"include": ["source"],
"exclude": ["**/dist", "vitest.config.ts"]
}