Skip to content

Commit 8d26b59

Browse files
committed
adds tsconfig
1 parent c8924e9 commit 8d26b59

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

tsConfig.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"paths": {
5+
"@/*": ["./*"]
6+
},
7+
"allowJs": false,
8+
"alwaysStrict": true,
9+
"exactOptionalPropertyTypes": true,
10+
"noPropertyAccessFromIndexSignature": true,
11+
"noImplicitAny": true,
12+
"noImplicitReturns": true,
13+
"noImplicitOverride": true,
14+
"noFallthroughCasesInSwitch": true,
15+
"allowUnreachableCode": false,
16+
"allowUnusedLabels": false,
17+
"noImplicitThis": true,
18+
"noUnusedLocals": true,
19+
"noUnusedParameters": true,
20+
"forceConsistentCasingInFileNames": true,
21+
"skipLibCheck": true,
22+
"strict": true,
23+
"noEmit": true,
24+
"incremental": true,
25+
"module": "esnext",
26+
"esModuleInterop": true,
27+
"moduleResolution": "node",
28+
"resolveJsonModule": true,
29+
"isolatedModules": true,
30+
"jsx": "preserve"
31+
},
32+
"include": [
33+
"**/*.ts",
34+
"**/*.tsx"
35+
],
36+
"exclude": [
37+
"node_modules"
38+
]
39+
}

0 commit comments

Comments
 (0)