tsconfig.json 简介
tsconfig.json是TypeScript项目的根目录下的配置文件,文件中指定了用来编译这个项目的根文件和编译选项。只要有ts,必定会有sconfig.json文件。
{
"extends": "./tsconfig",//
"compilerOptions": {
"typeRoots" : ["./typings"],
"path":[],//映射的文件路径,在
},
"include": [//需要编译的文件
"src/**/*"
],
"exclude": [//忽略编译的文件
"node_modules",
"**/*.spec.ts"
]
}