排除 tsconfig.json 中的模式
Exclude with pattern in tsconfig.json
有什么方法可以在 tsconfig 文件的排除 属性 中添加模式,还是它只能支持目录?
我试图从编译中排除我所有的测试文件,所以我想知道我是否可以使用这样的东西:
src/**/*.spec.ts
不过好像不行。
Globs 在 Typescript 2.0+ 中工作。你会在 tsconfig.json
.
中做 "exclude" : ["src/**/*.spec.ts"]
更多
https://basarat.gitbook.io/typescript/content/docs/project/files.html
完整示例,如果有人需要的话:
{
"compilerOptions": {
...
},
"include": [
"src/**/*"
],
"exclude": [
"src/**/*.spec.ts"
]
}
有什么方法可以在 tsconfig 文件的排除 属性 中添加模式,还是它只能支持目录?
我试图从编译中排除我所有的测试文件,所以我想知道我是否可以使用这样的东西:
src/**/*.spec.ts
不过好像不行。
Globs 在 Typescript 2.0+ 中工作。你会在 tsconfig.json
.
"exclude" : ["src/**/*.spec.ts"]
更多
https://basarat.gitbook.io/typescript/content/docs/project/files.html
完整示例,如果有人需要的话:
{
"compilerOptions": {
...
},
"include": [
"src/**/*"
],
"exclude": [
"src/**/*.spec.ts"
]
}