Files
container-toolkit-action/tsconfig.json
T

12 lines
309 B
JSON
Raw Normal View History

2019-08-02 09:09:37 -04:00
{
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",
2019-08-02 09:09:37 -04:00
"compilerOptions": {
2023-09-15 12:31:10 -04:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2025-01-08 11:58:58 -05:00
"outDir": "./dist"
2019-08-02 09:09:37 -04:00
},
2025-01-08 11:58:58 -05:00
"exclude": ["__fixtures__", "__tests__", "coverage", "dist", "node_modules"],
"include": ["src"]
2019-08-02 09:09:37 -04:00
}