naive-ui/tsconfig.json

17 lines
313 B
JSON
Raw Normal View History

{
"include": ["src/**/*"],
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"module": "ES6",
"moduleResolution": "Node",
2021-02-03 00:48:31 +08:00
"declaration": true,
"lib": [
"ESNext",
"DOM"
]
}
}