mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
692a6ac5dc
* Upgrade workspace to TypeScript 6 * Restore Nest baseUrl for SWC builds * Use empty changeset for TS6 upgrade * Remove TS6 changeset
16 lines
401 B
JSON
16 lines
401 B
JSON
{
|
|
"extends": "@workflow/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "./src",
|
|
"target": "es2022",
|
|
"lib": ["es2022", "dom", "dom.iterable", "webworker"],
|
|
"jsx": "react-jsx",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"types": ["node", "react", "react-dom"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
}
|