sunmao-ui/packages/runtime/tsconfig.json
2021-09-18 18:06:31 +08:00

30 lines
770 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": false,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"noUnusedLocals": true,
"noUnusedParameters": true,
"types": ["@emotion/react/types/css-prop"],
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@traits/*": ["src/traits/*"],
"@types/*": ["src/types/*"],
"@utils/*": ["src/utils/*"],
},
},
"include": ["./src"]
}