c8032a214e
* 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>
21 lines
591 B
JSON
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"]
|
|
}
|