@luban-cli/cli-plugin-service
Version:
A development runtime environment dependency
51 lines (45 loc) • 1.31 kB
JSON
{
// More tsconfig info see https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
"include": ["src/**/*", "src/.luban/**/*"],
"files": ["luban.config.ts"],
"exclude": ["public", "node_modules", "dist", "build"],
"compilerOptions": {
/* Project Options */
"declaration": false,
"jsx": "react",
"target": "ESNext",
"module": "ESNext",
"removeComments": true,
"rootDir": "./",
"sourceMap": true,
/* Strict Checks */
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
/* Module Resolution */
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"esModuleInterop": true,
"moduleResolution": "node",
"paths": {
"@/*": ["src/*"],
"luban": ["src/.luban/index.ts"],
"luban/*": ["src/.luban/*"],
},
/* Linter Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
/* Advanced Options */
"resolveJsonModule": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}