我有一个项目portal
。随着我的开发,我意识到我本质上需要存储库中的多个项目。因此,我现在有一个这样的项目结构:
我想知道,是否可以在两个和目录tsconfig.json
之外都有文件,这意味着打字稿编译器选项将适用于两个项目?当我在门户项目中执行此操作时,我似乎遇到了这个错误:portal
shop
npm run serve
Error: Cannot find "C:\Git\ui\portal\tsconfig.json" file. Please check webpack and ForkTsCheckerWebpackPlugin configuration.
Possible errors:
- wrong `context` directory in webpack configuration (if `tsconfig` is not set or is a relative path in fork plugin configuration)
- wrong `tsconfig` path in fork plugin configuration (should be a relative or absolute path)
我不太确定它来自哪里,因为我的代码库中没有定义这样的文件路径。
的内容tsconfig.json
是:
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": "portal",
"types": [
"webpack-env"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"portal/src/**/*.ts",
"portal/src/**/*.tsx",
"portal/src/**/*.vue"
],
"exclude": [
"node_modules"
]
}