setup-hugo/.forgejo/linters/tsconfig.json

10 lines
276 B
JSON
Raw Normal View History

2024-05-03 12:53:26 +00:00
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../../tsconfig.json",
"compilerOptions": {
"noEmit": true
},
"include": ["../../__tests__/**/*", "../../src/**/*"],
"exclude": ["../../dist", "../../node_modules", "../../coverage", "*.json"]
2024-05-03 13:00:45 +00:00
}