tsconfig.examples.json 752 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "outDir": "./build/src/",
  4. "noImplicitAny": true,
  5. "target": "es5",
  6. "module": "commonjs",
  7. "jsx": "react",
  8. "lib": [ "es6", "dom", "esnext.asynciterable", "es2016" ],
  9. "allowJs": true,
  10. "sourceMap": true,
  11. "strictNullChecks": true,
  12. "esModuleInterop": true
  13. },
  14. "include": [
  15. "src/custom.d.ts",
  16. "src/examples/single-chain/index.tsx",
  17. "src/examples/external-mapping/index.tsx",
  18. "src/examples/multiple-chain/index.tsx",
  19. "src/examples/structural-alignment/index.tsx",
  20. "src/examples/css-config/index.tsx",
  21. "src/examples/assembly/index.ts",
  22. "src/examples/assembly-interface/index.ts",
  23. "src/examples/uniprot/index.ts"
  24. ],
  25. "exclude": [
  26. "node_modules"
  27. ]
  28. }