tsconfig.json 504 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "declaration": true,
  5. "removeComments": false,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "allowSyntheticDefaultImports": true,
  9. "target": "es2017",
  10. "sourceMap": true,
  11. "rootDir": "src",
  12. "outDir": "./dist",
  13. "baseUrl": "./",
  14. "incremental": false,
  15. "skipLibCheck": true,
  16. "noEmit" : false,
  17. "resolveJsonModule" : true
  18. },
  19. "include": ["src/**/*","src/**/**/*","src/**/dlls/*.dll"]
  20. }