-
Notifications
You must be signed in to change notification settings - Fork 40
/
tsconfig.json
42 lines (42 loc) · 1.02 KB
/
tsconfig.json
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
{
"extends": ["astro/tsconfigs/strict"],
"compilerOptions": {
"verbatimModuleSyntax": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"allowArbitraryExtensions": true,
"alwaysStrict": true,
"strictNullChecks": true,
"allowImportingTsExtensions": true,
"jsx": "preserve",
"skipDefaultLibCheck": true,
"allowJs": true,
"checkJs": true,
"baseUrl": ".",
"paths": {
"#/*": ["./src/*"],
"tailwind.config": ["./tailwind.config.ts"]
},
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"types": ["node", "bun", "typed-query-selector/strict"]
},
"include": ["src", "public", "scripts"],
"files": [
"reset.d.ts",
"astro.config.ts",
"svelte.config.js",
"tailwind.config.ts",
"postcss.config.cjs",
"markdown.config.ts"
],
"exclude": ["_", "dist", "node_modules"]
}