tsconfig.json 581 B

1234567891011121314151617181920212223
  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. "emitDecoratorMetadata": true,
  21. "experimentalDecorators": true
  22. },
  23. }