fluidd

Форк
0
/
tsconfig.app.json 
49 строк · 1.1 Кб
1
{
2
  "extends": "@vue/tsconfig/tsconfig.web.json",
3
  "include": [
4
    "env.d.ts",
5
    "components.d.ts",
6
    "src/**/*",
7
    "src/**/*.vue",
8
    "src/monaco/theme/editor.*.theme.json"
9
  ],
10
  "exclude": [
11
    "src/**/__tests__/*"
12
  ],
13
  "compilerOptions": {
14
    "lib": [
15
      // Target ES2020 to align with Vite.
16
      // <https://vitejs.dev/config/build-options.html#build-target>
17
      // Support for newer versions of language built-ins are
18
      // left for the users to include, because that would require:
19
      //   - either the project doesn't need to support older versions of browsers;
20
      //   - or the project has properly included the necessary polyfills.
21
      "ES2020",
22

23
      "DOM",
24
      "DOM.Iterable"
25

26
      // No `ScriptHost` because Vue 3 dropped support for IE
27
    ],
28
    "composite": true,
29
    "baseUrl": ".",
30
    "paths": {
31
      "@/*": [
32
        "./src/*"
33
      ]
34
    },
35

36
    // if `<script setup>` is used, then remove the next line
37
    "preserveValueImports": false,
38

39
    "importsNotUsedAsValues": "remove",
40

41
    "experimentalDecorators": true,
42

43
    "verbatimModuleSyntax": true
44
  },
45

46
  "vueCompilerOptions": {
47
    "target": 2.7
48
  }
49
}
50

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.