tsconfig.json 989 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": false,
  6. "sourceMap": true,
  7. "noImplicitAny": true,
  8. "noUnusedLocals": false,
  9. "noImplicitReturns": true,
  10. "moduleResolution": "node",
  11. "allowSyntheticDefaultImports": true,
  12. "esModuleInterop": true,
  13. "experimentalDecorators": true,
  14. "declaration": true,
  15. "resolveJsonModule": true,
  16. "types": [
  17. "node"
  18. ],
  19. "forceConsistentCasingInFileNames": true,
  20. "baseUrl": ".",
  21. "typeRoots": [
  22. "./node_modules/@polkadot/ts",
  23. "./node_modules/@types"
  24. ],
  25. "declarationDir": "lib",
  26. "outDir": "lib",
  27. "lib": [
  28. "dom",
  29. "dom.iterable",
  30. "esnext"
  31. ],
  32. "allowJs": true,
  33. "skipLibCheck": true,
  34. "noFallthroughCasesInSwitch": true,
  35. "isolatedModules": true,
  36. "noEmit": true,
  37. "jsx": "react-jsx"
  38. },
  39. "include": [
  40. "src/*.ts"
  41. ],
  42. "exclude": [
  43. "node_modules",
  44. "**/*.spec.ts",
  45. "**/*.d.ts"
  46. ]
  47. }