tsconfig.json 562 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "outDir": "./build/",
  4. "noImplicitAny": true,
  5. "noImplicitReturns": true,
  6. "noImplicitThis": true,
  7. "alwaysStrict": true,
  8. "skipLibCheck": true,
  9. "module": "None",
  10. "target": "es2017",
  11. "jsx": "react",
  12. "allowJs": true,
  13. "sourceMap": true,
  14. "moduleResolution": "node",
  15. "allowSyntheticDefaultImports": true,
  16. "lib": ["dom", "esnext"],
  17. "experimentalDecorators": true,
  18. "baseUrl": "./",
  19. "paths": {
  20. "~/*": ["./src/*"]
  21. }
  22. },
  23. "include": ["./src/**/*.ts", "./src/**/*.tsx"]
  24. }