Files
LP_Bot/tsconfig.json
2025-12-08 15:50:23 +08:00

42 lines
780 B
JSON

{
"compilerOptions": {
"module": "esnext",
"target": "es2015",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"experimentalDecorators": true,
"sourceMap": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"strictNullChecks": false,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": false,
"allowImportingTsExtensions": true,
"useDefineForClassFields": true,
"noEmit": true,
"jsx": "react-jsx",
"types": ["vite/client"],
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"src",
"_BusinessTypeSetting"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}