Files
container-toolkit-action/tsconfig.json

12 lines
309 B
JSON
Raw Normal View History

{
2023-09-15 12:31:10 -04:00
"$schema": "https://json.schemastore.org/tsconfig",
2025-01-08 11:58:58 -05:00
"extends": "./tsconfig.base.json",
"compilerOptions": {
2023-09-15 12:31:10 -04:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2025-01-08 11:58:58 -05:00
"outDir": "./dist"
},
2025-01-08 11:58:58 -05:00
"exclude": ["__fixtures__", "__tests__", "coverage", "dist", "node_modules"],
"include": ["src"]
}