-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 738 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 738 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
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"outDir": "dist",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"sourceMap": true,
"rootDir": "src",
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"baseUrl": "./",
"jsx": "react",
"skipLibCheck": true,
"typeRoots": ["./node_modules/@types", "./src/webview/react", "./src/webview/react/views", "./src/types"]
},
"include": [
"src",
"src/webview/react/global.d.ts",
"src/webview/react/views/index.d.ts",
"src/types/form-data.d.ts"
],
"exclude": ["node_modules", ".vscode-test"]
}