我需要将正则添加到tsconfig文件中。我正在尝试仅匹配TS源文件,但不匹配测试文件。
尝试了类似;
的东西 "include": [
"src/**/*",
"../../node_modules/@web/common/src/app/views/**/*.ts"
"../../node_modules/@web/common/src/app/views/**/*.(module|component).ts"
],
"exclude": [
"node_modules",
"**/*.spec.ts",
"../../**/*.spec.ts"
但没有运气。
// should match
/main.ts
/hello-world.component.ts
// shouldn't match
/hello-world.component.spec.ts
/app.e2e-spec.ts
tsconfig文件具有exclude
部分,可根据模式匹配排除文件。例如:
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
手册