Blob模式在Windows上的typescript中不起作用

时间:2018-02-09 19:14:21

标签: typescript angular-cli

在tsconfig.json中使用blob模式时,

Typescript不起作用。请在下面找到我的tsconfig.json。

org.jenkinsci.plugins.scriptsecurity.sandbox.RejectedAccessException: Scripts not permitted to use new java.io.File java.lang.String

1 个答案:

答案 0 :(得分:2)

files属性不接受glob模式 - 它接受一个字符串文件名数组:

{
    ...

    "files": [
        "core.ts",
        "sys.ts",
        "types.ts"
    ]
}

相反,使用include属性 - 它接受你期望的glob:

{
    ... 

    "include": [
        "src/**/*"
    ],
    "exclude": [
        "node_modules",
        "**/*.spec.ts"
    ]
}

此处的“示例”部分中提供的示例:http://www.typescriptlang.org/docs/handbook/tsconfig-json.html