omi/components/input-number/tsconfig.json

30 lines
633 B
JSON
Raw Permalink Normal View History

2021-07-31 21:31:41 +08:00
{
"compilerOptions": {
2021-08-25 20:48:31 +08:00
"module": "esnext",
"lib": [
"es2017",
"dom",
"dom.iterable"
],
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./types",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
2021-07-31 21:31:41 +08:00
"experimentalDecorators": true,
2021-08-25 20:48:31 +08:00
"forceConsistentCasingInFileNames": true,
2021-07-31 21:31:41 +08:00
"jsx": "react",
"jsxFactory": "h",
},
"include": [
2021-08-25 20:48:31 +08:00
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": []
}