1
0
Files
build-push-action/tsconfig.json
T

23 lines
468 B
JSON
Raw Normal View History

2020-08-16 00:36:41 +02:00
{
"compilerOptions": {
2023-02-20 11:11:15 +01:00
"esModuleInterop": true,
2020-08-16 00:36:41 +02:00
"target": "es6",
"module": "commonjs",
2023-02-20 11:11:15 +01:00
"strict": true,
2020-08-16 00:36:41 +02:00
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
2022-03-15 21:59:52 +01:00
"forceConsistentCasingInFileNames": true,
2020-08-16 00:36:41 +02:00
"noImplicitAny": false,
2023-02-20 11:11:15 +01:00
"resolveJsonModule": true,
2022-03-15 21:59:52 +01:00
"useUnknownInCatchVariables": false,
2020-08-16 00:36:41 +02:00
},
"exclude": [
2023-02-20 11:11:15 +01:00
"./__mocks__/**/*",
"./__tests__/**/*",
"./lib/**/*",
2020-08-16 00:36:41 +02:00
"node_modules",
2022-03-15 21:59:52 +01:00
"jest.config.ts"
2020-08-16 00:36:41 +02:00
]
}