aboutsummaryrefslogtreecommitdiffhomepage
path: root/types/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'types/tsconfig.json')
-rw-r--r--types/tsconfig.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/types/tsconfig.json b/types/tsconfig.json
new file mode 100644
index 000000000..8f09c4a83
--- /dev/null
+++ b/types/tsconfig.json
@@ -0,0 +1,23 @@
1{
2 "extends": "../tsconfig.base.json",
3 "compilerOptions": {
4 "stripInternal": true,
5 "removeComments": false,
6 "emitDeclarationOnly": true,
7 "outDir": "./dist/",
8 "baseUrl": "./src/",
9 "rootDir": "./src/",
10 "paths": {
11 "@server/*": [ "../../server/*" ],
12 "@shared/*": [ "../../shared/*" ],
13 "@client/*": [ "../../client/src/*" ],
14 }
15 },
16 "references": [
17 { "path": "../shared/tsconfig.types.json" },
18 { "path": "../server/tsconfig.types.json" },
19 { "path": "./src/client/tsconfig.json" }
20 ],
21 "files": ["./src/index.ts"],
22}
23