Files
setup-docker-action/tsconfig.json

20 lines
402 B
JSON
Raw Permalink Normal View History

2023-03-02 14:12:09 +01:00
{
"compilerOptions": {
"esModuleInterop": true,
"target": "es6",
"module": "commonjs",
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
},
"exclude": [
"node_modules",
2023-09-10 04:25:51 +02:00
"**/*.test.ts",
2023-03-02 14:12:09 +01:00
"jest.config.ts"
]
}