Hanye官网
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

tsconfig.json 444B

123456789101112131415161718
  1. {
  2. // https://nuxt.com/docs/guide/concepts/typescript
  3. "extends": "./.nuxt/tsconfig.json",
  4. "compilerOptions": {
  5. "target": "ESNext",
  6. "module": "ESNext",
  7. "moduleResolution": "Node",
  8. "strict": true,
  9. "jsx": "preserve",
  10. "sourceMap": true,
  11. "resolveJsonModule": true,
  12. "isolatedModules": true,
  13. "esModuleInterop": true,
  14. "lib": ["ESNext", "DOM"],
  15. "skipLibCheck": true,
  16. "types": ["@nuxt/content"]
  17. }
  18. }