tsconfig.base.json 360 B

123456789101112131415
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "compilerOptions": {
  4. "declaration": true,
  5. "emitDeclarationOnly": true,
  6. "strict": true,
  7. "moduleResolution": "Node16",
  8. "target": "ES2022",
  9. "module": "Node16",
  10. "esModuleInterop": true,
  11. "skipLibCheck": true,
  12. "verbatimModuleSyntax": true,
  13. "stripInternal": true
  14. }
  15. }