Files
Michael Telatynski c8032a214e Typescript fixes (#5157)
* Remove deprecated tsconfig baseUrl

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Fix imports in tests

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Fix duplicated map entry

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

---------

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
2026-01-21 17:28:10 +00:00

21 lines
591 B
JSON

{
"compilerOptions": {
"target": "es2022",
"experimentalDecorators": false,
"esModuleInterop": true,
"module": "preserve",
"moduleResolution": "bundler",
"noUnusedLocals": true,
"noEmit": true,
"declaration": true,
"strict": true,
"allowImportingTsExtensions": true,
"lib": ["es2024", "dom", "dom.iterable"],
"types": ["vitest/globals", "node"],
"paths": {
"#types/*": ["./node_modules/vite/types/*"]
}
},
"include": ["./src/**/*.ts", "./spec/**/*.ts"]
}