tsconfig.integration.json 471 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "module": "CommonJS",
  4. "moduleResolution": "Node",
  5. "esModuleInterop": true,
  6. "target": "ES2022",
  7. "lib": ["ES2022", "ESNext.Disposable", "DOM"],
  8. "sourceMap": true,
  9. "strict": true,
  10. "skipLibCheck": true,
  11. "useUnknownInCatchVariables": false,
  12. "rootDir": "src",
  13. "outDir": "out-integration"
  14. },
  15. "include": ["**/*.ts"],
  16. "exclude": [".vscode-test", "benchmark", "dist", "**/node_modules/**", "out", "out-integration", "webview-ui"]
  17. }