12345678910111213141516171819202122232425262728 |
- {
- "compilerOptions": {
- "outDir": "./build/src/",
- "noImplicitAny": true,
- "target": "es5",
- "module": "commonjs",
- "jsx": "react",
- "lib": [ "es6", "dom", "esnext.asynciterable", "es2016" ],
- "allowJs": true,
- "sourceMap": true,
- "strictNullChecks": true,
- "esModuleInterop": true
- },
- "include": [
- "src/custom.d.ts",
- "src/examples/single-chain/index.tsx",
- "src/examples/external-mapping/index.tsx",
- "src/examples/multiple-chain/index.tsx",
- "src/examples/structural-alignment/index.tsx",
- "src/examples/css-config/index.tsx",
- "src/examples/assembly/index.ts",
- "src/examples/assembly-interface/index.ts",
- "src/examples/uniprot/index.ts"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|