Useful methods for file-related functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
536 B

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