tsconfig.json 505 B

123456789101112131415161718192021
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "allowJs": true,
  5. "allowSyntheticDefaultImports": true,
  6. "baseUrl": ".",
  7. "jsx": "preserve",
  8. "lib": ["dom", "es2017"],
  9. "module": "esnext",
  10. "moduleResolution": "node",
  11. "noEmit": true,
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": true,
  14. "preserveConstEnums": true,
  15. "removeComments": false,
  16. "skipLibCheck": true,
  17. "sourceMap": true,
  18. "target": "esnext",
  19. "typeRoots": ["./node_modules/@types"]
  20. }
  21. }