tsconfig.examples.json 686 B

1234567891011121314151617181920212223242526
  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. },
  13. "include": [
  14. "src/custom.d.ts",
  15. "src/examples/single-chain/index.tsx",
  16. "src/examples/external-mapping/index.tsx",
  17. "src/examples/multiple-chain/index.tsx",
  18. "src/examples/structural-alignment/index.tsx",
  19. "src/examples/css-config/index.tsx",
  20. "src/examples/assembly/index.ts",
  21. "src/examples/assembly-interface/index.ts"
  22. ],
  23. "exclude": [
  24. "node_modules"
  25. ]
  26. }