Skip to content

Commit

Permalink
remove vitest form tsconfig to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
netbonus committed Oct 19, 2024
1 parent 4fb7386 commit 1ceb26e
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,14 @@
/* Basic Options */
// "incremental": true, /* Enable incremental compilation */
"target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
"typeRoots": ["node_modules/@types", "src/**/types"],
"types": ["node", "jest", "vitest", "vitest/globals"]
"typeRoots": [
"node_modules/@types",
"src/**/types"
],
"types": [
"node",
"jest"
]
},
"exclude": [
"node_modules",
Expand All @@ -71,5 +77,8 @@
"**/*.test.ts",
"forge"
],
"include": ["./src", "forge"]
}
"include": [
"./src",
"forge"
]
}

0 comments on commit 1ceb26e

Please sign in to comment.