Files
pezkuwi-dev/packages/dev-test/tsconfig.spec.json
T
pezkuwichain b65f265e87 Fix TypeScript type definitions for test suite
- Add explicit Describe and It interfaces with todo support
- Fix mock type compatibility in jest.ts
- Update import assertions to import attributes (assert -> with)
- Add dynamic.d.mts declaration file
- Fix spec files to use explicit type declarations
2026-01-17 21:02:45 +03:00

18 lines
335 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "..",
"outDir": "./build",
"rootDir": "./src",
"emitDeclarationOnly": false,
"noEmit": true
},
"include": [
"src/**/*.spec.ts",
"src/globals.d.ts"
],
"references": [
{ "path": "../dev-test/tsconfig.build.json" }
]
}