We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81f22eb commit 6ce4739Copy full SHA for 6ce4739
tsconfig.json
@@ -0,0 +1,23 @@
1
+{
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "compilerOptions": {
4
+ "target": "ESNext",
5
+ "lib": ["ESNext"],
6
+ "module": "NodeNext",
7
+ "moduleResolution": "NodeNext",
8
+ "rootDir": "./",
9
+ "outDir": ".build",
10
+ "removeComments": true,
11
+ "esModuleInterop": true,
12
+ "forceConsistentCasingInFileNames": true,
13
+ "strict": true,
14
+ "noImplicitReturns": true,
15
+ "skipLibCheck": true,
16
+ "baseUrl": "./src",
17
+ "paths": {
18
+ "*": ["src/*"]
19
+ }
20
+ },
21
+ "include": ["./src/**/*.ts"],
22
+ "exclude": ["node_modules", "./tests/**"]
23
+}
0 commit comments