tsconfig.json 336 B

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