我需要添加一个生成的文件夹,它既不是全局环境的一部分,也不是src
的一部分,用于为源文件提供模块作为有效的命名空间,如下所示:
root
|- src
|-- component
|-- test.model.ts ( import { IBuilding } from 'api/interfaces.ts' );
|- generated
|-- api
| interfaces.ts ( export interface IBuilding {} )
我在官方文档中已阅读有关模块和模块解决方案的信息,但以下选项均无法应用:
在我的情况下,它与CLASSPATH
和PYTHON_PATH
分别对Java和Python非常相似。
任何人都可以提供帮助吗?
答案 0 :(得分:1)
您似乎可以在tsconfig.json
filesGlob
"filesGlob": [
"**/*.ts", //Local source, this is the default
"../generated/**/*.ts" //generated source
], //Add as many directories to the above list as needed