Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

tsconfig.json 494 B

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. }