我在 VS 代码中遇到了这个问题,只在这个项目中。当我创建一个新文件时,我不能使用绝对导入路径,我必须重新启动 VS Code 或重新运行npm start
每次创建新文件时都必须重新运行项目或重新启动 VS 代码,这很耗时。请帮帮我这是我的 tsconfig.json
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"baseUrl": "src",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": ["src"]
}