Files
Exiled-Exchange-2/renderer/tsconfig.json
T
Kvan7 4951ac9e2d v0.3.1 (#260)
* Corrupted items pricecheck #252

* Features/tests (#254)

* Basic test working

* LETS GO TESTING

* 0.1.0f bump

* version bump & linter fixes
2025-01-08 22:10:59 -06:00

44 lines
757 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"
}
]
}