tsconfig.json 457 B

123456789101112131415161718
  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. }
  18. }