Serialize and deserialize data.
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
528 B

  1. {
  2. "exclude": ["node_modules"],
  3. "include": ["src", "types", "test"],
  4. "compilerOptions": {
  5. "module": "ESNext",
  6. "lib": ["ESNext"],
  7. "importHelpers": true,
  8. "declaration": true,
  9. "sourceMap": true,
  10. "rootDir": "./",
  11. "strict": true,
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": true,
  14. "noImplicitReturns": true,
  15. "noFallthroughCasesInSwitch": true,
  16. "moduleResolution": "node",
  17. "esModuleInterop": true,
  18. "target": "es2018",
  19. "paths": {
  20. "src/*": ["./src/*"]
  21. }
  22. }
  23. }