tsconfig.json 762 B

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