Files
bun.sh/test/tsconfig.json
dave caruso 6a163cf933 bundler tests and improve Bun.build return type (#2833)
* 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
2023-05-11 14:42:54 -07:00

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