tsconfig.json 1.1 KB

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "target": "es2015", // Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'.
  4. "module": "es6", // Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'.
  5. "outDir": "./lib", // 编译后生成的文件目录
  6. "strict": true, // 开启严格的类型检测
  7. "declaration": true, // 生成 `.d.ts` 文件
  8. "experimentalDecorators": true, // 开启装饰器
  9. "removeComments": true, // 去除注释
  10. "noImplicitAny": true, // 在表达式和声明上有隐含的 any类型时报错。
  11. "esModuleInterop": true, // 支持别名导入
  12. "moduleResolution": "node" // 此处设置为node,才能解析import xx from 'xx'
  13. },
  14. "include": ["./src"],
  15. "exclude": ["node_modules"]
  16. }