tsconfig.json 334 B

12345678910111213141516
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "display": "Node 16",
  4. "compilerOptions": {
  5. "lib": ["es2021"],
  6. "module": "Node16",
  7. "target": "es2021",
  8. "strict": true,
  9. "esModuleInterop": true,
  10. "skipLibCheck": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "moduleResolution": "node"
  13. }
  14. }