tsconfig.json 配置
{
/* 编译路径
**表示文件夹下的所有文件夹,
*表示文件夹下的所有文件
*/
"include": ["./src/**/*"],
/* 排除路径 不参加编译的文件路径
默认值[”node_modules“,"bower_components","jspm_packages"]
*/
"exclude": ["./hellow/**/*"]
}
...大约 3 分钟
{
/* 编译路径
**表示文件夹下的所有文件夹,
*表示文件夹下的所有文件
*/
"include": ["./src/**/*"],
/* 排除路径 不参加编译的文件路径
默认值[”node_modules“,"bower_components","jspm_packages"]
*/
"exclude": ["./hellow/**/*"]
}