mirror of
https://github.com/pezkuwichain/pezkuwi-dev.git
synced 2026-04-21 23:48:03 +00:00
b65f265e87
- 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
18 lines
335 B
JSON
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" }
|
|
]
|
|
}
|