Replace globstar (bash 4.0+) with find for portability. macOS ships with bash 3.2 which doesn't support globstar. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
348 B
JSON
15 lines
348 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"target": "ES2022",
|
|
"lib": ["ES2023"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"types": ["node"],
|
|
"outDir": "out"
|
|
},
|
|
"exclude": ["**/*.spec.ts", "**/*.test.ts"]
|
|
}
|