We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 832e36b commit 9d9a5bfCopy full SHA for 9d9a5bf
server/tsconfig.json
@@ -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
20
+ // typescript options here
21
22
+}
0 commit comments