forked from moonbeam-foundation/moonbeam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 841 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 841 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
28
29
{
"compilerOptions": {
"module": "ES2022",
"target": "ES2020",
"outDir": "build",
"baseUrl": "./",
"moduleResolution": "nodenext",
"importHelpers": true,
"skipLibCheck": true,
"noEmit": true,
"preserveConstEnums": true,
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"strict": true
/*"paths": {
"@helpers/xcm": ["helpers/xcm.js"],
"@helpers/block": ["helpers/block.js"],
"@helpers/common": ["helpers/common.js"],
"@helpers/assets": ["helpers/assets.js"],
"@helpers/expect": ["helpers/expect.js"],
} */ // Sadly this isn't supported by vitest yet
},
"typeRoots": ["node_modules/@types"],
"types": ["node"],
"include": ["*suites/**/*.ts"],
"exclude": ["node_modules/"]
}