tsconfig.base.json 472 B

12345678910111213141516171819202122
  1. {
  2. "include": [
  3. "./src/**/*"
  4. ],
  5. "compilerOptions": {
  6. "sourceMap": true,
  7. "declaration": true,
  8. "declarationMap": true,
  9. "allowSyntheticDefaultImports": true,
  10. "experimentalDecorators": true,
  11. "emitDecoratorMetadata": true,
  12. "noImplicitAny": false,
  13. "strictNullChecks": true,
  14. "esModuleInterop": true,
  15. "resolveJsonModule": true,
  16. "composite": true,
  17. "baseUrl": ".",
  18. "typeRoots": [
  19. "node_modules/@types"
  20. ],
  21. }
  22. }