Files
bun.sh/tsconfig.json
Colin McDonnell 931f23d360 Fix typecheck
2023-02-28 19:47:46 -08:00

31 lines
709 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"experimentalDecorators": 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",
"src/deps",
"bun-webkit",
// JavaScriptCore builtins use a non-standard "@" symbol to indicate a private identifier which no other tool supports
"src/bun.js/builtins",
"src/bun.js/WebKit",
"src/api/demo",
"test/snapshots",
"test/snapshots-no-hmr",
"node_modules"
]
}