tsconfig.json 373 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "outDir": "./dist/",
  4. "noImplicitAny": true,
  5. "module": "esnext",
  6. "target": "es2017",
  7. "jsx": "react",
  8. "allowJs": true,
  9. "moduleResolution": "node",
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "strict": true
  13. },
  14. "include": ["**/*.ts", "tests/*.ts"],
  15. "exclude": ["node_modules", "dist"]
  16. }