tsconfig.json 312 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "allowSyntheticDefaultImports": true,
  5. "checkJs": true,
  6. "esModuleInterop": true,
  7. "lib": ["es2018"],
  8. "module": "commonjs",
  9. "noEmit": true,
  10. "resolveJsonModule": true,
  11. "skipLibCheck": true
  12. },
  13. "include": ["lib/**/*", "typings/**/*"]
  14. }