mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-07-03 12:12:50 +08:00
BREAKING CHANGE: Run action on Node 24 Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
22 lines
526 B
JSON
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/**/*"]
|
|
}
|