36 lines
974 B
JSON
36 lines
974 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"declaration": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"composite": true,
|
|
"jsx": "react",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@@/*": [".dumi/tmp/*"],
|
|
"@zhst/*": ["packages/*/src/"]
|
|
},
|
|
"importHelpers": false,
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"jsxFactory": "React.createElement",
|
|
"jsxFragmentFactory": "React.Fragment",
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "Node",
|
|
"isolatedModules": false,
|
|
"target": "es6",
|
|
"lib": ["dom", "es2017"],
|
|
"stripInternal": true,
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
// "@zhst/meta" 全局使用的工具包,不建议写到 npm 包中去
|
|
]
|
|
},
|
|
"include": [".dumirc.ts", "src/**/*", "packages/**/*", "global.d.ts"],
|
|
"exclude": ["node_modules", "lib", "es", ".dumi"]
|
|
}
|