首选TypeScript中文网-编译选项 TS 使用 tsconfig.json 作为其配置文件,它主要包含两块内容: 1. 指定待编译的文件2. 定义编译选项 1. 1. 指定待编译的文件 第一个实例 {// 配置编译选项"compilerOptions": { "module": "commonjs", "noImplicitAny": true, "removeComments": true, "preserveConstEnums"...