| { | |
| "compilerOptions": { | |
| "module": "commonjs", | |
| "target": "ES2020", | |
| "lib": ["ES2020", "DOM"], // DOM needs to be included for webview scripts | |
| "sourceMap": true, | |
| "rootDir": "src", | |
| "outDir": "out", | |
| "strict": true, | |
| }, | |
| "include": [ | |
| "src/" | |
| ], | |
| "exclude": [ | |
| "node_modules", | |
| ".vscode-test" | |
| ], | |
| } |