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.

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