naive-ui/tsconfig.json
2021-01-16 15:25:28 +08:00

20 lines
416 B
JSON

{
"include": ["src/**/*"],
"exclude": ["src/_deprecated/icons/**/*", "src/**/*.spec.js"],
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"allowJs": true,
"checkJs": true,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"module": "ES6",
"moduleResolution": "Node",
"target": "ES6",
"lib": [
"ESNext",
"DOM"
]
}
}