summaryrefslogtreecommitdiff
path: root/.ci/tsconfig.json
blob: 58e91472438c20fcfea80a7e45ac14f76bc96c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    "extends": "../tsconfig.json",
    "compilerOptions": {
        "outDir": "./dist",
        "rootDir": "./",
        "composite": true,
        "declaration": true,
        "declarationMap": true,
        "sourceMap": true,
        "noEmit": false
    },
    "include": ["**/*.ts"],
    "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
    "references": [{ "path": "../u" }, { "path": "../model" }]
}