visualize_dataset / tsconfig.test.json
mishig's picture
mishig HF Staff
fix type-check for test files (bun:test types + ES2020 BigInt support)
eddbda3
{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020", "dom"],
"types": ["bun-types"],
"incremental": false
},
"include": ["**/__tests__/**/*.ts", "src/**/*.ts"]
}