Files
bun.sh/tsconfig.json
dave caruso 4df1d37ddc Bundle and minify .exports.js files. (#3036)
* move all exports.js into src/js

* finalize the sort of this

* and it works

* add test.ts to gitignore

* okay

* convert some to ts just to show

* finish up

* fixup makefile

* minify syntax in dev

* finish rebase

* dont minify all modules

* merge

* finish rebase merge

* flaky test that hangs
2023-06-01 18:16:47 -07:00

26 lines
433 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"experimentalDecorators": true,
"noEmit": true,
// "skipLibCheck": true,
"allowJs": true
},
"include": [
".",
"packages/bun-types/index.d.ts"
],
"exclude": [
"src/test",
"packages",
"bench",
"examples/*/*",
"test",
"src/deps",
"bun-webkit",
"src/bun.js/WebKit",
"src/api/demo",
"node_modules"
]
}