mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
34 lines
639 B
JSON
34 lines
639 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "CommonJS",
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": 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"
|
|
]
|
|
} |