当前位置:   article > 正文

tsconfig.json和jsconfig.json配置_tsconfig/jsconfig

tsconfig/jsconfig
  1. {
  2. // 编译选项
  3. "compilerOptions": {
  4. // 生成代码的语言版本:将我们写的 TS 代码编译成哪个版本的 JS 代码
  5. // 命令行: tsc --target es5 11-测试TS配置文件.ts
  6. "target": "es5",
  7. // 指定要包含在编译中的 library
  8. "lib": ["dom", "dom.iterable", "esnext"],
  9. // 允许 ts 编译器编译 js 文件
  10. "allowJs": true,
  11. // 跳过类型声明文件的类型检查
  12. "skipLibCheck": true,
  13. // es 模块 互操作,屏蔽 ESModule 和 CommonJS 之间的差异
  14. "esModuleInterop": true,
  15. // 允许通过 import x from 'y' 即使模块没有显式指定 default 导出
  16. "allowSyntheticDefaultImports": true,
  17. // 开启严格模式
  18. "strict": true,
  19. // 对文件名称强制区分大小写
  20. "forceConsistentCasingInFileNames": true,
  21. // 为 switch 语句启用错误报告
  22. "noFallthroughCasesInSwitch": true,
  23. // 生成代码的模块化标准
  24. "module": "esnext",
  25. // 模块解析(查找)策略
  26. "moduleResolution": "node",
  27. // 允许导入扩展名为.json的模块
  28. "resolveJsonModule": true,
  29. // 是否将没有 import/export 的文件视为旧(全局而非模块化)脚本文件
  30. "isolatedModules": true,
  31. // 编译时不生成任何文件(只进行类型检查)
  32. "noEmit": true,
  33. // 指定将 JSX 编译成什么形式
  34. "jsx": "react-jsx"
  35. },
  36. // 指定允许 ts 处理的目录
  37. "include": ["src"]
  38. }
  1. {
  2. // 编译选项
  3. "compilerOptions": {
  4. // 编译ES5
  5. "target": "es5",
  6. // 指定模块系统
  7. "module": "esnext",
  8. // 模块基础目录
  9. "baseUrl": "./",
  10. // 解析导入模块
  11. "moduleResolution": "node",
  12. // 相对于模块路径
  13. "paths": {
  14. "@/*": ["src/*"]
  15. },
  16. // 默认库
  17. "lib": ["esnext", "dom", "dom.iterable", "srcipthost"]
  18. }
  19. }

在这里插入图片描述

 

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号