前端转vue
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 316B

12345678910111213141516
  1. {
  2. "include": [
  3. "config/**/*.ts",
  4. ],
  5. "compilerOptions": {
  6. "target": "esnext",
  7. "module": "commonjs",
  8. "sourceMap": true,
  9. "resolveJsonModule": true,
  10. "strict": false,
  11. "noUnusedLocals": false,
  12. "noImplicitReturns": false,
  13. "esModuleInterop": true,
  14. "noImplicitAny": false,
  15. }
  16. }