Typescript不起作用。请在下面找到我的tsconfig.json。
org.jenkinsci.plugins.scriptsecurity.sandbox.RejectedAccessException: Scripts not permitted to use new java.io.File java.lang.String
答案 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