tsconfig.json 891 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "skipLibCheck": true,
  5. "allowJs":true,
  6. "baseUrl": "./",
  7. "outDir": "./dist/out-tsc",
  8. "sourceMap": true,
  9. "declaration": false,
  10. "downlevelIteration": true,
  11. "experimentalDecorators": true,
  12. "module": "esnext",
  13. "moduleResolution": "node",
  14. "importHelpers": true,
  15. "target": "es5",
  16. "allowSyntheticDefaultImports": true,
  17. "esModuleInterop": false,
  18. "typeRoots": [
  19. "node_modules/@types"
  20. ],
  21. "lib": [
  22. "es2018",
  23. "dom"
  24. ]
  25. },
  26. "angularCompilerOptions": {
  27. "fullTemplateTypeCheck": false,//编译器预编译(改为true后,--prod打包后会报错:ERROR in : Illegal state: Could not load the summary for directive RouterOutlet in)
  28. "strictInjectionParameters": true,
  29. "disableTypeScriptVersionCheck": true//禁用项目对typescript版本的检查
  30. }
  31. }