forked from MoralisWeb3/Moralis-JS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.package.json
40 lines (40 loc) · 914 Bytes
/
tsconfig.package.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
{
"compilerOptions": {
"strict": true,
"skipLibCheck": true,
"outDir": "./lib",
"baseUrl": ".",
"composite": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "/lib",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ESNext"],
"module": "CommonJS",
"allowJs": true,
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"preserveSymlinks": true,
"preserveWatchOutput": true,
"pretty": false,
"sourceMap": true,
"target": "es5",
"useUnknownInCatchVariables": false
},
"exclude": [
"node_modules",
"**/node_modules/*",
"**/__mocks__/*",
"**/test/*",
"**/*.test.ts",
"**/*/lib",
"**/*/lib.esm",
"**/*/dist",
"*.d.ts"
]
}