Files
typescript-action/tsconfig.json
T

12 lines
309 B
JSON
Raw Normal View History

2019-07-22 14:15:40 -04:00
{
2023-08-23 13:37:14 -04:00
"$schema": "https://json.schemastore.org/tsconfig",
2024-11-15 11:38:36 -05:00
"extends": "./tsconfig.base.json",
2019-07-22 14:15:40 -04:00
"compilerOptions": {
2023-09-11 13:16:20 -04:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2024-11-15 11:38:36 -05:00
"outDir": "./dist"
2019-07-22 14:15:40 -04:00
},
2024-11-15 11:38:36 -05:00
"exclude": ["__fixtures__", "__tests__", "coverage", "dist", "node_modules"],
"include": ["src"]
2019-07-22 14:15:40 -04:00
}