Skip to content

Commit bc64ab0

Browse files
committed
Add tsconfig.json for TypeScript configuration
This file defines TypeScript compiler options to ensure consistent coding standards and stricter type checking. It includes settings for module resolution, JavaScript compatibility, and paths to include source and type definitions.
1 parent 8d1fe3a commit bc64ab0

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

tsconfig.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES5",
4+
"module": "ES6",
5+
"strict": true,
6+
"esModuleInterop": true,
7+
"skipLibCheck": true,
8+
"baseUrl": ".",
9+
"typeRoots": ["./@types"],
10+
"allowJs": true,
11+
"checkJs": false,
12+
"noEmit": true
13+
},
14+
"include": [
15+
"./src/**/*",
16+
"./@types/**/*"
17+
]
18+
}

0 commit comments

Comments
 (0)