LP_Bot/tsconfig.json
2023-12-05 17:27:18 +08:00

41 lines
684 B
JSON

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