mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
44 lines
896 B
JSON
44 lines
896 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"esModuleInterop": true,
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "Node",
|
|
"experimentalDecorators": true,
|
|
"allowImportingTsExtensions": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": false,
|
|
"jsx": "preserve",
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {
|
|
"@/common/*": [
|
|
"../common/*"
|
|
],
|
|
"@/core": [
|
|
"./src/index"
|
|
],
|
|
"@/core/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts"
|
|
]
|
|
}
|