This commit is contained in:
pincman
2024-05-08 00:24:43 +08:00
commit fa01d3c04c
123 changed files with 14580 additions and 0 deletions
@@ -0,0 +1,11 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Antd pro",
"extends": "./base.json",
"compilerOptions": {
"allowJs": true,
"module": "esnext",
"importHelpers": true,
"jsx": "preserve"
}
}
+29
View File
@@ -0,0 +1,29 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"compilerOptions": {
"strict": true,
"alwaysStrict": true,
"target": "esnext",
"moduleResolution": "Node",
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": true,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": false,
"isolatedModules": true,
"esModuleInterop": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"pretty": true,
"resolveJsonModule": true,
"importsNotUsedAsValues": "remove"
}
}
@@ -0,0 +1,18 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Next.js",
"extends": "./base.json",
"compilerOptions": {
"allowJs": true,
"lib": ["dom", "dom.iterable", "esnext"],
"noEmit": true,
"module": "esnext",
"moduleResolution": "bundler",
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
]
}
}
@@ -0,0 +1,12 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node.js",
"extends": "./base.json",
"compilerOptions": {
"allowJs": true,
"module": "commonjs",
"noEmit": false,
"declaration": true,
"declarationMap": true
}
}
@@ -0,0 +1,41 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Vite React",
"extends": "./base.json",
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"removeComments": true,
"experimentalDecorators": true,
"alwaysStrict": true,
"sourceMap": true,
"incremental": true,
"noImplicitReturns": true,
"pretty": true,
"noImplicitAny": true,
"importsNotUsedAsValues": "remove",
"emitDecoratorMetadata": true,
"strictNullChecks": false,
"strictBindCallApply": false
}
}