compose-action/tsconfig.json
Emilien Escalle 0a6ea0e8cd feat: migrate to node20 and typescritp
Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
2024-03-29 23:15:24 +01:00

22 lines
559 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"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/**/*"]
}