Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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