mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
* handle `umask()` invalid arguments
* move `bktree-fast` to test root, fix postinstall
* fix fs test
* could be baseline
* handle different timezones
* accidentally deleted tests
* fix hang in `AbortSignal.timeout`
* bring abort tests back
* Revert "bring abort tests back"
This reverts commit 0ff2ad5bf4.
* bunx node-gyp
* bun x
* fix typecheck
* test
* Update inspect.test.js
---------
Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>
52 lines
997 B
JSON
52 lines
997 B
JSON
{
|
|
"include": [
|
|
".",
|
|
"../packages/bun-types/index.d.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"moduleDetection": "force",
|
|
"allowImportingTsExtensions": true,
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "preserve",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"harness": [
|
|
"harness.ts"
|
|
],
|
|
"mkfifo": [
|
|
"mkfifo.ts"
|
|
],
|
|
"node-harness": [
|
|
"js/node/harness.ts"
|
|
],
|
|
"deno:harness": [
|
|
"js/deno/harness.ts"
|
|
],
|
|
"foo/bar": [
|
|
"js/bun/resolve/baz.js"
|
|
],
|
|
"@faasjs/*": [
|
|
"js/bun/resolve/*.js"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"fixtures",
|
|
"snapshots",
|
|
"js/deno"
|
|
]
|
|
}
|