Skip to content

Commit f21647e

Browse files
committed
chore: enable strict file naming check in tsconfig
1 parent 5edb2ff commit f21647e

1 file changed

Lines changed: 6 additions & 12 deletions

File tree

tsconfig.json

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
{
22
"extends": "astro/tsconfigs/strict",
3-
"include": [
4-
".astro/types.d.ts",
5-
"**/*"
6-
],
7-
"exclude": [
8-
"dist"
9-
],
3+
"include": [".astro/types.d.ts", "**/*"],
4+
"exclude": ["dist"],
105
"compilerOptions": {
116
"baseUrl": ".",
127
"paths": {
13-
"@/*": [
14-
"./src/*"
15-
]
8+
"@/*": ["./src/*"]
169
},
1710
"jsx": "react-jsx",
18-
"jsxImportSource": "react"
11+
"jsxImportSource": "react",
12+
"forceConsistentCasingInFileNames": true
1913
}
20-
}
14+
}

0 commit comments

Comments
 (0)