You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
650 B
26 lines
650 B
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"jsx": "react",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["dom", "esnext"],
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"/@/*": ["src/*"],
|
|
"/@design/": ["src/design/index.less"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|
|
|