TS 3.5 我有以下配置在开发过程中可与tsserver配合使用:
/tsconfig.json <= "strict": true
/nested/tsconfig.json <= extends parent tsconfig, "noImplicitThis": false
/nested/some ts code <= has implicit this
因此,我的父配置定义了严格的true,并且项目中的大多数代码都遵循此规则。但是在名为nested
的文件夹中,有一个代码与noImplicitThis
不符,因此我在其中tsconfig.json
添加了extends
父tsconfig
并具有editorOption { {1}}设置为noImplicitThis
。
在使用false
开发时,我没有出现任何错误。
但是当我尝试执行vscode
(在根目录中)时,在tsc -p .
文件夹代码中出现了“隐含此”错误。
因此,在使用nested
编译整个项目时,我不知道如何使nested / tsconfig.json应用于nested/**
代码。