openmeter / api /spec /packages /aip-client-javascript /tsconfig.tests.json
Leon4gr45's picture
Upload folder using huggingface_hub (part 2)
1477a90 verified
Raw
History Blame Contribute Delete
673 Bytes
Invalid JSON:Unexpected token '/', "// Type-ch"... is not valid JSON
// Type-checks tests/ (the build tsconfig only includes src/, so without this
// the spec files are never type-checked — vitest strips types without checking
// them). Used by the `typecheck` script; never emits.
{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": true,
"declaration": false,
"declarationMap": false,
"sourceMap": false,
// @fetch-mock/vitest's own d.ts imports the undeclared jest 'expect'
// package; skip dependency declaration files (our .ts sources are still
// fully checked, and src/ is separately checked without this flag).
"skipLibCheck": true
},
"include": ["src/**/*.ts", "tests/**/*.ts"]
}