tsconfig.json 303 B

123456789101112131415161718
  1. {
  2. "extends": "../../tsconfig.json",
  3. "include": [
  4. "src/**/*.ts",
  5. "src/**/*.tsx"
  6. ],
  7. "exclude": [
  8. "dist"
  9. ],
  10. "compilerOptions": {
  11. "rootDir": ".",
  12. "module": "esnext",
  13. "outDir": "dist",
  14. "declaration": true,
  15. "noImplicitAny": true,
  16. "strictNullChecks": true
  17. }
  18. }