Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920
  1. {
  2. "include": ["src", "types"],
  3. "compilerOptions": {
  4. "module": "esnext",
  5. "lib": ["dom", "esnext"],
  6. "importHelpers": true,
  7. "declaration": true,
  8. "sourceMap": true,
  9. "strict": true,
  10. "noImplicitReturns": true,
  11. "noFallthroughCasesInSwitch": true,
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": true,
  14. "moduleResolution": "node",
  15. "esModuleInterop": true,
  16. "skipLibCheck": true,
  17. "forceConsistentCasingInFileNames": true,
  18. "noEmit": true
  19. }
  20. }