tsconfig.json 682 B

123456789101112131415161718192021222324
  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. "noImplicitAny": true,
  12. "declaration": 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. },
  22. "include": ["**/*.ts"],
  23. "exclude": ["node_modules"]
  24. }