Files
attest/tsconfig.lint.json
T

11 lines
292 B
JSON
Raw Normal View History

2025-08-26 16:05:21 -07:00
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.json",
"compilerOptions": {
2026-02-05 13:09:08 -08:00
"noEmit": true,
"rootDir": "."
2025-08-26 16:05:21 -07:00
},
2026-02-05 13:09:08 -08:00
"include": ["./__tests__/**/*", "./src/**/*", "./jest.config.ts"],
2025-08-26 16:05:21 -07:00
"exclude": ["./dist", "./node_modules", "./coverage", "*.json"]
}