-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig-webview.json
28 lines (28 loc) · 992 Bytes
/
tsconfig-webview.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
{
"include": ["src/view"],
"compilerOptions": {
"module": "esnext",
"target": "ES2020",
"moduleResolution": "node",
"jsx": "react",
"lib": ["ES2020", "dom", "DOM.Iterable"],
"sourceMap": true,
"outDir": "dist",
"baseUrl": "./src/view",
/* paths - import rewriting/resolving */
"paths": {
// If you configured any Snowpack aliases, add them here.
// Add this line to get types for streaming imports (packageOptions.source="remote"):
// "*": [".snowpack/types/*"]
// More info: https://www.snowpack.dev/guides/streaming-imports
},
/* noEmit - Snowpack builds (emits) files, not tsc. */
// "noEmit": true,
/* Additional Options */
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true
}
}