tsconfig: exclude node_modules and local directory

This commit is contained in:
2024-07-19 18:08:52 +08:00
parent 5484a49166
commit bb1515096c

View File

@@ -97,5 +97,9 @@
/* Completeness */ /* Completeness */
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */ "skipLibCheck": true /* Skip type checking all .d.ts files. */
} },
"exclude": [
"node_modules",
"local",
]
} }