mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* oooooh magic * stuff * run format * ok * yippee * run the formatter back * finish things up * fix webkit * more * [autofix.ci] apply automated fixes * fix compile * fix compilation on windows, it seems to not work though :( * update * a * v * ok * [autofix.ci] apply automated fixes * OOPS * bump bun to reduce ci bugs * a * js2native is done! * improve array binding * rebase * some final stuff * wasi fixes * os --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"include": [".", "../packages/bun-types/index.d.ts", "./testing-internals.d.ts"],
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"moduleDetection": "force",
|
|
"allowImportingTsExtensions": true,
|
|
"experimentalDecorators": true,
|
|
"noEmit": true,
|
|
"composite": true,
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "preserve",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"noImplicitThis": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"harness": ["harness.ts"],
|
|
"mkfifo": ["mkfifo.ts"],
|
|
"node-harness": ["js/node/harness.ts"],
|
|
"deno:harness": ["js/deno/harness.ts"],
|
|
"bun:internal-for-testing": ["../src/js/internal-for-testing.ts"],
|
|
"foo/bar": ["js/bun/resolve/baz.js"],
|
|
"@faasjs/*": ["js/bun/resolve/*.js", "js/bun/resolve/*/src/index.js"],
|
|
"@faasjs/larger/*": ["js/bun/resolve/*/larger-index.js"]
|
|
}
|
|
},
|
|
|
|
"exclude": ["bundler/fixtures", "snapshots", "js/deno"]
|
|
}
|