Skip to content

Commit e47703b

Browse files
committed
chore(ts config): add exclude and format
1 parent bf83079 commit e47703b

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

tsconfig.json

+17-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
{
2-
"compilerOptions": {
3-
"target": "esnext",
4-
"module": "esnext",
5-
"lib": ["esnext", "DOM"],
6-
"moduleResolution": "node",
7-
"esModuleInterop": true,
8-
"strict": true,
9-
"strictNullChecks": true,
10-
"forceConsistentCasingInFileNames": true,
11-
"resolveJsonModule": true,
12-
"skipDefaultLibCheck": true,
13-
"skipLibCheck": true,
14-
"noUncheckedIndexedAccess": true,
15-
},
16-
"include": ["./.vitepress/theme/**/**/*", "./.vitepress/config"]
2+
"compilerOptions": {
3+
"target": "esnext",
4+
"module": "esnext",
5+
"lib": ["esnext", "DOM"],
6+
7+
"strict": true,
8+
"skipLibCheck": true,
9+
"esModuleInterop": true,
10+
"strictNullChecks": true,
11+
"resolveJsonModule": true,
12+
"moduleResolution": "node",
13+
"skipDefaultLibCheck": true,
14+
"noUncheckedIndexedAccess": true,
15+
"forceConsistentCasingInFileNames": true
16+
},
17+
"include": ["./.vitepress/theme/**/**/*", "./.vitepress/config"],
18+
"exclude": ["node_modules", "dist"]
1719
}

0 commit comments

Comments
 (0)