tsconfig.json 270 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "ES2020",
  5. "outDir": "out",
  6. "lib": ["ES2020"],
  7. "sourceMap": true,
  8. "rootDir": "src",
  9. "strict": true
  10. },
  11. "exclude": ["node_modules", ".vscode-test"]
  12. }