Skip to content

Commit 8f13b27

Browse files
committed
Clean up base TS config
Former-commit-id: 697d4f5
1 parent 3b733fd commit 8f13b27

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

tsconfig.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"compilerOptions": {
3+
"strict": true,
4+
"target": "ESNext",
5+
"module": "ESNext",
6+
"moduleResolution": "Node",
7+
"esModuleInterop": true,
8+
"skipLibCheck": true,
9+
"lib": ["dom", "es2017"],
10+
"jsx": "react",
11+
"declaration": true,
12+
"declarationDir": "./types",
13+
"sourceMap": true,
14+
"removeComments": false,
15+
"noUnusedLocals": true,
16+
"noUnusedParameters": true,
17+
"baseUrl": "./"
18+
},
19+
"include": ["src/**/*"],
20+
"exclude": ["node_modules", "dist"]
21+
}

tsconfig.json.REMOVED.git-id

-1
This file was deleted.

0 commit comments

Comments
 (0)