tsconfig.json 540 B

12345678910111213141516171819202122
  1. {
  2. "extends": "../tsconfig.json",
  3. "compilerOptions": {
  4. "declaration": true,
  5. "noImplicitAny": false,
  6. "removeComments": true,
  7. "noLib": false,
  8. "skipLibCheck": true,
  9. "lib": ["es2017", "esnext.asynciterable"],
  10. "allowSyntheticDefaultImports": true,
  11. "emitDecoratorMetadata": true,
  12. "experimentalDecorators": true,
  13. "target": "es6",
  14. "strict": true,
  15. "strictPropertyInitialization": false,
  16. "sourceMap": true,
  17. "baseUrl": "./src",
  18. "paths": {
  19. "shared/*": ["../../shared/*"]
  20. }
  21. }
  22. }