tsconfig.json 737 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "baseUrl": "./",
  5. "outDir": "lib",
  6. "sourceMap": true,
  7. "allowJs": true,
  8. "module": "commonjs",
  9. "lib": ["es7", "dom"],
  10. "moduleResolution": "node",
  11. "declaration": true,
  12. "noImplicitAny": true,
  13. "suppressImplicitAnyIndexErrors": true,
  14. "forceConsistentCasingInFileNames": true,
  15. "allowSyntheticDefaultImports": true,
  16. "experimentalDecorators": true,
  17. "noImplicitReturns": true,
  18. "noImplicitThis": false,
  19. "strictNullChecks": false,
  20. "esModuleInterop": true,
  21. "skipLibCheck": true,
  22. },
  23. "include": ["**/*.ts"],
  24. "exclude": ["node_modules", "lib"]
  25. }