mirror of
https://git.mirrors.martin98.com/https://github.com/docker/setup-docker-action
synced 2025-04-10 14:05:24 +08:00
20 lines
402 B
JSON
20 lines
402 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"newLine": "lf",
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": false,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": false,
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.test.ts",
|
|
"jest.config.ts"
|
|
]
|
|
}
|