-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 814 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 814 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedSideEffectImports": true,
"skipLibCheck": true,
"noEmit": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"lib": ["ES2022", "DOM"],
"types": ["node"],
"noImplicitAny": true
},
"include": ["src/**/*.ts", "test/parity/**/*.ts", "test/util/**/*.ts", "test/module/**/*.ts"],
"exclude": ["node_modules", "dist", "website"]
}