Files
bun.sh/test/tsconfig.json
Jarred Sumner 54d6f95f43 Dylan/fix some failing tests (#2544)
* 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>
2023-04-04 16:47:57 -07:00

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"
]
}