tsconfig.json 606 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "baseUrl": "./",
  5. "outDir": "./dist/out-tsc",
  6. "sourceMap": true,
  7. "declaration": false,
  8. "moduleResolution": "node",
  9. "emitDecoratorMetadata": true,
  10. "experimentalDecorators": true,
  11. "strict": true,
  12. "noImplicitAny": false,
  13. "strictPropertyInitialization": false,
  14. "target": "es5",
  15. "skipLibCheck": true,
  16. "typeRoots": [
  17. "node_modules/@types",
  18. "./typings"
  19. ],
  20. "lib": [
  21. "es2017",
  22. "dom",
  23. "esnext.asynciterable"
  24. ],
  25. "paths": {
  26. "shared/*": ["../shared/*"]
  27. }
  28. }
  29. }