如果我执行:
tsc
一切都可以编译,没有问题。在tsconfig.json中拾取模式
# inside package.json
scripts: {
"build" : "tsc"
}
$ yarn build
抛出错误。
error TS6307: File '***' is not in project file list. Projects must list all files or use an 'include' pattern.
error Command failed with exit code 2.
文件在运行tsc
时处于模式中,而没有产生所需的效果。
为什么会这样?