tsconfig.json 381 B

12345678910111213141516
  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. "outDir": "out"
  13. },
  14. "include": ["src"],
  15. "exclude": [".vscode-test", "**/node_modules/**", "out"]
  16. }