# tsconfig.json

> 17 lines of code and 0 definitions.

Tree: Build tree
Language: json
Canonical: https://banes-lab.com/anatomy/build#file-build-tsconfig-json
Source text: https://banes-lab.com/assets/sources/source.b7a369d8465cf5acb3f0f9b3db224cf169ad2c8020aea17dd81e667fdd360036.generated.txt

## Source

```json
{
    "extends": "../../tsconfig.base.json",
    "compilerOptions": {"noEmit": true,
        "customConditions": ["development"],
        "lib": ["ESNext"],
        "types": ["node"]},
    "include": [
        "configuration/**/*.ts",
        "core/**/*.ts",
        "runtime/**/*.ts",
        "types/**/*.ts"
    ],
    "exclude": [
        "**/node_modules",
        "**/dist"
    ]
}
```
