LLOneBot/tsconfig.json
linyuchen 25c7a6096d refactor: path alias
fix: moehook
2024-05-10 20:23:30 +08:00

34 lines
576 B
JSON

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