yunhan-cli
Version:
react17 + react-router + redux + typescript
32 lines (27 loc) • 720 B
JSON
{
"compilerOptions": {
"target": "ES5",
"module": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"jsx": "react",
"isolatedModules": true,
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"baseUrl": "./",
"paths": {
"Src/*": ["src/*"],
"Components/*": ["src/components/*"],
"Utils/*": ["src/utils/*"]
},
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"noEmit": true
},
"exclude": ["node_modules"]
}