Skip to content

Commit 9d9a5bf

Browse files
committed
Added tsconfig to server
1 parent 832e36b commit 9d9a5bf

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

server/tsconfig.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
// This is an alias to @tsconfig/node16: https://github.com/tsconfig/bases
3+
"extends": "ts-node/node16/tsconfig.json",
4+
5+
// Most ts-node options can be specified here using their programmatic names.
6+
"ts-node": {
7+
// It is faster to skip typechecking.
8+
// Remove if you want ts-node to do typechecking.
9+
"transpileOnly": true,
10+
11+
"files": true,
12+
13+
"compilerOptions": {
14+
// compilerOptions specified here will override those declared below,
15+
// but *only* in ts-node. Useful if you want ts-node and tsc to use
16+
// different options with a single tsconfig.json.
17+
}
18+
},
19+
"compilerOptions": {
20+
// typescript options here
21+
}
22+
}

0 commit comments

Comments
 (0)