-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
112 lines (112 loc) · 2.8 KB
/
tsconfig.json
File metadata and controls
112 lines (112 loc) · 2.8 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ESNext", "DOM", "DOM.Iterable", "WebWorker"],
"jsx": "react-jsx",
"jsxImportSource": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"paths": {
"@/*": ["./src/*"],
"~/*": ["./src/*"],
"@lib/*": ["./src/lib/*"],
"@components/*": ["./src/components/*"],
"@layouts/*": ["./src/layouts/*"],
"@utils/*": ["./src/utils/*"],
"@types/*": ["./src/types/*"]
},
"allowJs": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"sourceMap": false,
"removeComments": true,
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo",
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": false,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": true,
"allowArbitraryExtensions": true,
"allowUmdGlobalAccess": false,
"skipLibCheck": true,
"types": ["node", "react", "react-dom"],
"typeRoots": [
"../node_modules/@types",
"./node_modules/@types",
"../src/types",
"./src/types"
],
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
]
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"./src/**/*.astro",
"./src/types/**/*.d.ts",
"./*.config.js",
"./*.config.ts",
"./vitest.setup.ts",
"./api/**/*.ts",
"./plugins/**/*.ts",
"./types/**/*.d.ts",
"./.astro-env.d.ts",
"./src/types/declarations.d.ts",
"./src/types/astro-components.d.ts",
"./src/types/npm-packages.d.ts"
],
"exclude": [
"./dist",
"./node_modules",
"./**/node_modules/**",
"./src/scripts",
"./.astro",
"./.local",
"./**/test-results/**",
"./**/performance-results/**",
"./**/youtube-transcription-pipeline/**",
"./**/public/test-results/**",
"./**/secret-scan-artifacts/**",
"./**/security-scan-artifacts/**",
"./ai",
"./scripts",
"./docs",
"./deploy",
"./docker",
"./infra",
"./lint",
"./LogFiles",
"./memory",
"./patches",
"./reports",
"./supabase",
"./templates",
"./test_pixel_logs",
"./types",
"./.venv",
"./tmp",
"./.git"
]
}