"update tsconfig patterns and compiler options across all projects"

This commit is contained in:
louiscklaw
2025-06-15 12:08:17 +08:00
parent 02058981bf
commit 1216bef8f8
5 changed files with 30 additions and 30 deletions

View File

@@ -1,39 +1,35 @@
{
"compilerOptions": {
"allowJs": true,
/* Bundler */
"baseUrl": ".",
"module": "ESNext",
"esModuleInterop": true,
"incremental": true,
"isolatedModules": true,
"jsx": "react-jsx",
"allowJs": true,
"resolveJsonModule": true,
/* Build */
"target": "ES2020",
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"moduleResolution": "bundler",
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"incremental": true,
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"esModuleInterop": true,
"isolatedModules": true,
/* Linting */
"strict": true,
"noEmit": true,
"strictNullChecks": true
"strictNullChecks": true,
/* Build */
"target": "ES2020",
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo"
},
"include": [
"src"
],
"exclude": [
"node_modules",
".next",
//
"**/* copy *.tsx",
"**/* copy.tsx",
"**/*.bak",
"**/* copy *.*",
"**/* copy.*",
"**/*.bak",
"**/*.bug",
"**/*.del",
@@ -42,9 +38,12 @@
"**/*.tmp",
"**/*del"
],
"include": [
"src"
],
"references": [
{
"path": "./tsconfig.node.json"
}
],
]
}

View File

@@ -6,8 +6,8 @@
"allowSyntheticDefaultImports": true
},
"exclude": [
"**/* copy *.tsx",
"**/* copy.tsx",
"**/* copy *.*",
"**/* copy.*",
"**/*.bak",
"**/*.bak",
"**/*.bug",
@@ -16,5 +16,8 @@
"**/*.log",
"**/*.tmp",
"**/*del"
], "include": ["vite.config.ts"]
],
"include": [
"vite.config.ts"
]
}