mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
* importstar_ts * tests * run acorn test suite * bench tweaks * test * bun.build tests very incomplete * remove dataurl and base64 loaders from tests since they dont work yet * tests * stuff * stuff * add errors and array of blobs * work so far * docs * requested changes * fix overwrite docs * remove this file
48 lines
989 B
JSON
48 lines
989 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": ["bundler/fixtures", "snapshots", "js/deno"]
|
|
}
|