diff options
Diffstat (limited to '.ci/tsconfig.json')
-rw-r--r-- | .ci/tsconfig.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.ci/tsconfig.json b/.ci/tsconfig.json new file mode 100644 index 0000000..58e9147 --- /dev/null +++ b/.ci/tsconfig.json @@ -0,0 +1,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" }] +} |