-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
87 lines (87 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"ts-node": {
"experimentalResolver": true
},
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"allowJs": true,
"importHelpers": true,
"alwaysStrict": true,
"sourceMap": false,
"declaration": true,
"declarationMap": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": false,
"noImplicitThis": false,
"skipLibCheck": true,
"strictNullChecks": false,
"downlevelIteration": true,
"outDir": "dist/package",
"types": [
"node",
"jest"
],
"typeRoots": [
"node_modules/@types",
"./src/types"
],
"lib": [
"es7",
"es6",
"dom",
"es2015",
"es2017",
"es2018",
"es2019",
"es2020",
"es2021",
"esnext",
"esnext.asynciterable"
],
"baseUrl": ".",
"paths": {
"@massalabs/wallet-provider": [
"./dist/esm/index.js"
],
}
},
"lib": [
"es7",
"es6",
"dom",
"es2015",
"es2017",
"es2018",
"es2019",
"es2020",
"es2021",
"esnext",
"esnext.asynciterable"
],
"files": [
"./node_modules/@types/node/index.d.ts"
],
"include": [
"./src/**/*.ts",
"./test-extension/runner.ts"
],
"exclude": [
"./node_modules/**/*",
"typings/browser.d.ts",
"typings/browser",
"node_modules",
"typings/main",
"typings/main.d.ts",
"typings/index.d.ts",
"typings",
"./dist/**/*"
]
}