-
Notifications
You must be signed in to change notification settings - Fork 54
/
tsconfig.json
32 lines (32 loc) · 875 Bytes
/
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
{
// "target": "esnext",
// "compilerOptions": {
// "esModuleInterop": true,
// "strict": true,
// "skipLibCheck": true,
// "jsx": "react-jsx",
// "module": "ESNext",
// "declaration": true,
// "declarationDir": "types",
// "sourceMap": true,
// "inlineSources": true,
// "outDir": "dist",
// "moduleResolution": "node",
// "emitDeclarationOnly": true,
// "allowSyntheticDefaultImports": true,
// "forceConsistentCasingInFileNames": true,
// "suppressImplicitAnyIndexErrors": true
// },
"compilerOptions": {
"esModuleInterop": true,
// "lib": ["es2018"],
"strict": true,
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"noUnusedLocals": true,
"forceConsistentCasingInFileNames": true,
"suppressImplicitAnyIndexErrors": true
},
"include": ["src", "src/svg.d.ts"]
}