tsconfig.json 266 B

1234567891011121314
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "compilerOptions": {
  4. "lib": ["es2018"],
  5. "module": "commonjs",
  6. "target": "es2018",
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "skipLibCheck": true,
  10. "moduleResolution": "node"
  11. }
  12. }