Files
Exiled-Exchange-2/renderer/tsconfig.json
T
Kvan7 1058b6f40a v0.8.1 (#453)
* [PoE2] - Relics broken again #444

* test prettier and add npm script

* add format/lint support to main

* Fix defineProps macro

* Run speed v0.8.0 - Russian. #447

* fix negative gold

* fix hunters t7 accuracy

* fix note in ko

* fix dumb bow skills with curly braces

* version bump
2025-03-05 17:21:43 -06:00

34 lines
684 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"moduleResolution": "node",
"skipLibCheck": true,
"isolatedModules": true,
"esModuleInterop": true,
"allowJs": true,
"useDefineForClassFields": true,
"sourceMap": true,
"paths": {
"@/*": ["./src/*"],
"@ipc/*": ["../ipc/*"]
},
"types": ["vite/client", "vitest/importMeta"],
"lib": ["esnext", "dom", "dom.iterable"]
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"specs/**/*.ts"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}