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

18 lines
374 B
JSON
Raw Normal View History

2020-08-16 00:36:41 +02:00
{
"compilerOptions": {
2026-02-28 16:47:36 +01:00
"module": "nodenext",
"moduleResolution": "nodenext",
2023-02-20 11:11:15 +01:00
"esModuleInterop": 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
},
2026-02-28 16:47:36 +01:00
"include": [
"src/**/*.ts"
2020-08-16 00:36:41 +02:00
]
}