download-artifact/tsconfig.json

13 lines
317 B
JSON
Raw Normal View History

{
"compilerOptions": {
2026-01-30 14:15:49 -05:00
"target": "ES2022",
"module": "NodeNext",
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": false,
2026-01-30 14:15:49 -05:00
"moduleResolution": "NodeNext",
"esModuleInterop": true
},
2025-03-19 11:25:29 +00:00
"exclude": ["node_modules", "**/*.test.ts", "jest.config.ts", "__tests__"]
}