什么是tsconfig.json
tsconfig.json
是TypeScript编译器tsc
的配置文件,可以避免tsc的冗长命令行参数,同时可以控制IDE(常见的Visual Studio Code)对TypeScript文件的行为。
使用tsc --locale zh-CN --all
可以查看tsc命令的中文帮助。
示例
{
"compilerOptions": {
"target": "ES6", // Specify ECMAScript target version: 'ES3', 'ES5', 'ES6'/'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ESNext'
"moduleResolution": "Node", // Specifies module resolution strategy. 指定模块解析策略: "node" (Node.js)或 "classic" (TypeScript pre-1.6)
"lib": ["ES6"], // List of library files to be included in the compilation. 指定要在编译中包括的库文件。
},
}