tsconfig.json 373 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "allowSyntheticDefaultImports": true,
  5. "declaration": true,
  6. "noEmit": true,
  7. "jsx": "react",
  8. "moduleResolution": "node",
  9. "module": "es2015",
  10. "target": "esnext",
  11. "typeRoots": [
  12. "node_modules/@types"
  13. ],
  14. "lib": [
  15. "es2015",
  16. "dom"
  17. ]
  18. },
  19. "include": [
  20. "./*.tsx"
  21. ]
  22. }