mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +08:00
626cfa474f
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ESNext"],
|
|
"module": "NodeNext",
|
|
"declaration": true,
|
|
"declarationMap": false,
|
|
"sourceMap": false,
|
|
"jsx": "react-native",
|
|
"noEmit": true,
|
|
|
|
/* Strict Type-Checking Options */
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
|
|
/* Additional Checks */
|
|
// "noUnusedLocals": false, // ensured by eslint, should not block compilation
|
|
// "noImplicitReturns": true,
|
|
// "noFallthroughCasesInSwitch": true,
|
|
|
|
/* Disabled on purpose (handled by ESLint, should not block compilation) */
|
|
"noUnusedParameters": false,
|
|
|
|
/* Module Resolution Options */
|
|
"moduleResolution": "nodenext",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
|
|
/* Advanced Options */
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true, // @types/webpack and webpack/types.d.ts are not the same thing
|
|
|
|
/* Use tslib */
|
|
"importHelpers": true,
|
|
"noEmitHelpers": true
|
|
},
|
|
"include": ["./**/.eslintrc.js", "./**/.stylelintrc.js"],
|
|
"exclude": ["node_modules", "**/lib/**/*"]
|
|
}
|