3
0
Fork 0
mirror of https://gitea.com/docker/login-action.git synced 2024-11-21 17:09:36 +01:00
docker-login/tsconfig.json

22 lines
444 B
JSON
Raw Normal View History

2020-08-15 14:45:36 +02:00
{
"compilerOptions": {
"esModuleInterop": true,
"target": "es6",
2020-08-15 14:45:36 +02:00
"module": "commonjs",
"strict": true,
2020-08-15 14:45:36 +02:00
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
"forceConsistentCasingInFileNames": true,
2020-08-15 14:45:36 +02:00
"noImplicitAny": false,
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
2020-08-15 14:45:36 +02:00
},
"exclude": [
"./__tests__/**/*",
"./lib/**/*",
"node_modules",
"jest.config.ts"
]
2020-08-15 14:45:36 +02:00
}