Useful methods for file-related functions.
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.

24 rader
557 B

  1. {
  2. "include": ["src", "types"],
  3. "compilerOptions": {
  4. "module": "esnext",
  5. "target": "ES6",
  6. "lib": ["dom", "esnext"],
  7. "importHelpers": true,
  8. "declaration": true,
  9. "sourceMap": true,
  10. "rootDir": "./src",
  11. "strict": true,
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": true,
  14. "noImplicitReturns": true,
  15. "noImplicitAny": true,
  16. "noFallthroughCasesInSwitch": true,
  17. "allowSyntheticDefaultImports": true,
  18. "moduleResolution": "node",
  19. "baseUrl": "./",
  20. "jsx": "react",
  21. "esModuleInterop": true
  22. }
  23. }