-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.eslint.json
More file actions
81 lines (81 loc) · 2.17 KB
/
Copy pathtsconfig.eslint.json
File metadata and controls
81 lines (81 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"$schema": "https://www.schemastore.org/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"erasableSyntaxOnly": true,
"incremental": true,
"isolatedDeclarations": false,
"noCheck": false,
"noEmit": true,
"tsBuildInfoFile": "./.cache/tsbuildinfo/tsconfig.eslint.tsbuildinfo"
},
"exclude": [
"**/_nuxt/**",
"**/.angular/**",
"**/.astro/**",
"**/.cache/**",
"**/.docusaurus/**",
"**/.eslintcache",
"**/.expo/**",
"**/.gradle/**",
"**/.next/**",
"**/.nitro/**",
"**/.nuxt/**",
"**/.output/**",
"**/.parcel-cache/**",
"**/.react-router/**",
"**/.rollup.cache/**",
"**/.svelte-kit/**",
"**/.temp/**",
"**/.tsbuildinfo",
"**/.turbo/**",
"**/.vite-inspect/**",
"**/.vitepress/cache/**",
"**/.vitepress/dist/**",
"**/.yarn/**",
"**/bin/**",
"**/bower_components/**",
"**/build/**",
"**/bundle/**",
"**/cache/**",
"**/cdk.out/**",
"**/compiled/**",
"**/coverage/**",
"**/dist/**",
"**/dist-bench/**",
"**/dist-scripts/**",
"**/dist-scripts-test/**",
"**/generated/**",
"**/lib/**/*.js",
"**/node_modules/**",
"**/out/**",
"**/output/**",
"**/playwright-report/**",
"**/playwright/reports/**",
"**/playwright/test-results/**",
"**/public/**",
"**/release/**",
"**/releases/**",
"**/reports/**",
"**/static/**",
"**/storybook-static/**",
"**/stryker-tmp/**",
"**/temp/**",
"**/tmp/**",
".cache/**",
".vercel/**",
"docs/docusaurus/.docusaurus/**",
"docs/docusaurus/build/**",
"docs/docusaurus/node_modules/**",
"docs/docusaurus/typedoc-plugins/*.d.mts",
"docs/docusaurus/site-docs/developer/api/**",
"eslint.config.bundled_*.mjs",
"test/fixtures/**"
],
"extends": "./tsconfig.json",
"include": [
"**/*",
"**/.*"
]
}