This commit is contained in:
louiscklaw
2025-06-15 03:50:15 +08:00
parent 862c5bd29c
commit 45bac1b3c8
7 changed files with 31 additions and 24 deletions

View File

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