tsconfig.base.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "files": [],
  3. "compilerOptions": {
  4. "target": "esnext",
  5. "module": "esnext",
  6. // 启用所有严格类型检查选项。
  7. //启用 --strict相当于启用 --noImplicitAny, --noImplicitThis, --alwaysStrict, --strictNullChecks和 --strictFunctionTypes和--strictPropertyInitialization。
  8. "strict": true,
  9. // 允许编译器编译JS,JSX文件
  10. "allowJs": false,
  11. // 允许在JS文件中报错,通常与allowJS一起使用
  12. "checkJs": false,
  13. // 允许使用jsx
  14. "jsx": "preserve",
  15. "declaration": true,
  16. //移除注解
  17. "removeComments": true,
  18. //不可以忽略any
  19. "noImplicitAny": false,
  20. //关闭 this 类型注解提示
  21. "noImplicitThis": true,
  22. //null/undefined不能作为其他类型的子类型:
  23. //let a: number = null; //这里会报错.
  24. "strictNullChecks": true,
  25. //生成枚举的映射代码
  26. "preserveConstEnums": true,
  27. //根目录
  28. //输出目录
  29. "outDir": "./ts-out-dir",
  30. //是否输出src2.js.map文件
  31. "sourceMap": true,
  32. //变量定义了但是未使用
  33. "noUnusedLocals": false,
  34. //是否允许把json文件当做模块进行解析
  35. "resolveJsonModule": true,
  36. //和noUnusedLocals一样,针对func
  37. "noUnusedParameters": false,
  38. // 模块解析策略,ts默认用node的解析策略,即相对的方式导入
  39. "moduleResolution": "node",
  40. //允许export=导出,由import from 导入
  41. "esModuleInterop": true,
  42. //忽略所有的声明文件( *.d.ts)的类型检查。
  43. "skipLibCheck": true,
  44. "baseUrl": ".",
  45. //指定默认读取的目录
  46. //"typeRoots": ["./node_modules/@types/", "./types"],
  47. "lib": ["ES2018", "DOM"]
  48. }
  49. }