mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* Fix TS types, improve child_process types * Add prettier * Add ArrayBuffer types * Add namespace Bun, improve types for SharedArrayBuffer, add toStrictEqual * Improve types, add test files for types * Update type tests * Fix typo * Add stdio * Stdio types * Use latest setup-bun * Update action * Update action * Update action Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu> Co-authored-by: Ashcon Partovi <ashcon@partovi.net>
28 lines
672 B
JSON
28 lines
672 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": true,
|
|
// "skipLibCheck": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
".",
|
|
"**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"src/test",
|
|
"packages",
|
|
"bench",
|
|
"examples/react-fast-refresh-test",
|
|
"examples/macros",
|
|
"test/bun.js/solid-dom-fixtures",
|
|
"test/bun.js/bundled",
|
|
// JavaScriptCore builtins use a non-standard "@" symbol to indicate a private identifier which no other tool supports
|
|
"src/bun.js/builtins",
|
|
"src/api/demo",
|
|
"test/snapshots",
|
|
"test/snapshots-no-hmr"
|
|
]
|
|
} |