1
0
Files
setup-buildx-action/tsconfig.json
T

18 lines
374 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
2026-02-28 10:02:54 +01:00
"module": "nodenext",
"moduleResolution": "nodenext",
2023-02-19 02:12:29 +01:00
"esModuleInterop": true,
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
2022-03-21 13:43:41 +01:00
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
2023-02-19 02:12:29 +01:00
"resolveJsonModule": true,
2022-03-21 13:43:41 +01:00
"useUnknownInCatchVariables": false,
},
2026-02-28 10:02:54 +01:00
"include": [
"src/**/*.ts"
2022-03-21 13:43:41 +01:00
]
}