-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 1.08 KB
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 1.08 KB
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
{
"$schema" : "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowImportingTsExtensions" : true,
"allowJs" : true,
"composite" : true,
"incremental" : true,
"lib" : ["ESNext", "DOM", "DOM.Iterable"],
"module" : "Preserve",
"moduleDetection" : "force",
"moduleResolution" : "bundler",
"noEmit" : true,
"noFallthroughCasesInSwitch" : true,
"noImplicitOverride" : true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess" : true,
"noUnusedLocals" : true,
"noUnusedParameters" : true,
"skipLibCheck" : true,
"strict" : true,
"target" : "ESNext",
"verbatimModuleSyntax" : true
},
"include": ["src/*", "*.json", "src/env.d.ts"]
}