typescript-action/.github/linters/tsconfig.json

10 lines
276 B
JSON
Raw Normal View History

2023-08-23 17:57:44 +00:00
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../../tsconfig.json",
"compilerOptions": {
"noEmit": true
},
"include": ["../../__tests__/**/*", "../../src/**/*"],
"exclude": ["../../dist", "../../node_modules", "../../coverage", "*.json"]
}