mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2025-10-30 06:08:00 +00:00
35 lines
717 B
JSON
35 lines
717 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/*"],
|
|
"@specs/*": ["./specs/*"]
|
|
},
|
|
"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"
|
|
}
|
|
]
|
|
}
|