Project: Mall App Client: Maiora
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 475 B

6 年之前
6 年之前
1234567891011121314151617181920212223
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "paths": { "*": ["types/*"] },
  5. "baseUrl": "./",
  6. "outDir": "./dist/out-tsc",
  7. "sourceMap": true,
  8. "declaration": false,
  9. "module": "esnext",
  10. "moduleResolution": "node",
  11. "emitDecoratorMetadata": true,
  12. "experimentalDecorators": true,
  13. "importHelpers": true,
  14. "target": "es2015",
  15. "typeRoots": [
  16. "node_modules/@types"
  17. ],
  18. "lib": [
  19. "es2018",
  20. "dom"
  21. ]
  22. }
  23. }