mirror of
https://github.com/tcsenpai/PerplexiBot.git
synced 2025-06-02 17:30:07 +00:00
45 lines
879 B
JSON
45 lines
879 B
JSON
{
|
|
"compilerOptions": {
|
|
// Enable latest features
|
|
"lib": ["ESNext"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
|
|
// Bundler mode
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": false,
|
|
"noEmit": true,
|
|
|
|
// Best practices
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
// Some stricter flags (disabled by default)
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
|
|
// Library root
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"src/*": [
|
|
"./src/"
|
|
],
|
|
"libs": [
|
|
"./src/libs"
|
|
],
|
|
"ltm": [
|
|
"./src/ltm"
|
|
],
|
|
"config": [
|
|
"./src/config"
|
|
],
|
|
}
|
|
}
|
|
}
|