compose-action/tsconfig.json
Marek Sierociński 11beaa1c2d feat!: update to Node 24
BREAKING CHANGE: Run action on Node 24

Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
2026-06-04 18:39:00 +02:00

22 lines
526 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2024",
"module": "NodeNext",
"rootDir": "./src",
"moduleResolution": "NodeNext",
"baseUrl": "./",
"sourceMap": true,
"outDir": "./dist",
"noImplicitAny": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"newLine": "lf",
"noEmit": true
},
"exclude": ["./dist", "./node_modules", "./src/**/*.test.ts", "./coverage"],
"include": ["./src/**/*"]
}