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.

15 lines
321 B

  1. {
  2. "extends": "@vue/tsconfig/tsconfig.json",
  3. "include": ["src/**/*.ts", "src/env.d.ts"],
  4. "exclude": ["node_modules", "vendor"],
  5. "compilerOptions": {
  6. "outDir": "./js",
  7. "allowJs": true,
  8. "checkJs": false,
  9. "allowImportingTsExtensions": true,
  10. "lib": ["ESNext"],
  11. },
  12. "vueCompilerOptions": {
  13. "target": 2.7,
  14. }
  15. }