mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2024-11-21 03:15:49 +08:00
27 lines
665 B
JSON
27 lines
665 B
JSON
{
|
|
"extends": "../../config/tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ES6",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"outDir": "./lib",
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"baseUrl": "./",
|
|
"jsx": "react-jsx",
|
|
"rootDir": "src"
|
|
},
|
|
"include": ["./src"]
|
|
}
|