-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
51 lines (50 loc) · 1.19 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Visit https://aka.ms/tsconfig to read more about this file
{
"compilerOptions": {
"outDir": "./lib",
"target": "esnext",
"module": "esnext",
"esModuleInterop": true,
"declaration": true,
"jsx": "react",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
// "outDir": "build",
// "module": "esnext",
// "target": "esnext",
// "lib": [
// "ESNext",
// "DOM"
// ],
// "strict": true,
// "declaration": true,
// "declarationDir":"./build",
// "resolveJsonModule": true,
// "esModuleInterop": true,
// "experimentalDecorators": true,
// "jsx": "react",
// "moduleResolution": "node",
// "allowSyntheticDefaultImports": true,
// "skipLibCheck": true,
// "noImplicitAny": false,
// "noImplicitThis": true,
// "sourceMap": true,
// "allowJs": true,
// "rootDir": ".",
// "baseUrl": ".",
},
"include": [
"src/**/*",
],
"exclude": [
"node_modules"
],
// "include": [
// "./src/jest-setup.ts", "./docs/global.d.ts"],
// "exclude": [
// "**/node_modules/",
// "**/dist/",
// "**/build/",
// ],
"typeRoots": ["./node_modules/@types"]
}