LLOneBot/tsconfig.json
2024-08-06 01:47:51 +08:00

35 lines
659 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"outDir": "./dist",
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"paths": {
"@/common/*": [
"./src/common/*"
],
"@/onebot11/*": [
"./src/onebot11"
],
"@/ntqqapi/*": [
"./src/ntqqapi/*"
]
},
"noEmit": true
},
"include": [
"src/*",
"src/**/*",
"scripts/*"
],
"exclude": [
"node_modules"
]
}