mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2024-12-03 09:09:52 +08:00
30 lines
770 B
JSON
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"]
|
|
}
|