forked from Dhruv-2003/token-gating-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (26 loc) · 679 Bytes
/
tsconfig.json
File metadata and controls
27 lines (26 loc) · 679 Bytes
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
{
"compilerOptions": {
// Default
"target": "ES6",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
// Added
"rootDir": "src",
"lib": ["ES5", "ES2015", "ES2016", "dom", "ESNext"],
"types": ["node"],
"jsx": "react",
"module": "ES2015",
"declaration": true,
"declarationDir": "types",
"sourceMap": true,
"outDir": "dist/esm",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"emitDeclarationOnly": true,
"noUnusedLocals": true,
"noImplicitAny": true
},
"exclude": ["node_modules", "dist"],
"include": ["src/**/**/*.ts", "src/**/**/*.tsx"]
}