mirror of
https://github.com/Geniusay/ChopperBot.git
synced 2026-05-07 22:26:46 +08:00
22 lines
500 B
JSON
22 lines
500 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "dom", "dom.iterable", "scripthost"],
|
|
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": ["vitest/globals"]
|
|
}
|
|
}
|