Skip to content

Commit 6ce4739

Browse files
committed
Add tsconfig.json for typescript configuration
1 parent 81f22eb commit 6ce4739

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

tsconfig.json

+23
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)