mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 19:38:58 +00:00
* readline_promises test fix * fix `escapeHTML` for baseline builds * fs test fixes, use `tmpdir()` * add paths for `resolve.test.js` * isError with toString symbol and error prototype * comment about `toString` * skip async macro transform * test cleanup, skip stack format test * readline undo and redo fix * capture error from readline keypress * Update tcp-server.test.ts * use `removefileat` for recursive rmdir * use strong for `signal.reason` * initialize `m_flags` * directory with file fs test * recursive option * import expect * could be less than * move abort signal tests to another process * fix typecheck --------- Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>
50 lines
925 B
JSON
50 lines
925 B
JSON
{
|
|
"include": [
|
|
".",
|
|
"../packages/bun-types/index.d.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"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"
|
|
]
|
|
}
|