mirror of
https://github.com/vercel/vercel-plugin.git
synced 2026-09-14 15:39:47 +08:00
b725f5308e
- Replace tsc+cp+rm pipeline with tsup (7ms builds, no intermediate dir) - tsup compiles hooks/src/*.mts directly to hooks/*.mjs - tsconfig.json retained for type-checking only (noEmit) - Remove all .sh references from tests, docs, and hooks.json - Fix glob pattern test to handle tsup's output format
15 lines
311 B
JSON
15 lines
311 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*.mts"]
|
|
}
|