我在 VS Code 中使用自动导入,它在我的一些项目中工作。
我还有一个 React 项目,其中 Auto Import 不会从index.ts
. 它也没有index.ts
在弹出窗口中显示路径选项Cmd-.
如何让自动导入添加最后没有文件名的路径,例如。
import { numRelays } from './../redux/reducer'
代替
import { numRelays } from './../redux/reducer/relayReducer'
tsconfig.json
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}