2023-04-04 17:13:09 +08:00
|
|
|
{
|
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
"display": "Base",
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
2024-01-06 09:19:52 +08:00
|
|
|
"moduleResolution": "bundler",
|
2023-04-04 17:13:09 +08:00
|
|
|
"strict": true,
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"useUnknownInCatchVariables": false,
|
|
|
|
"composite": false,
|
|
|
|
"declarationMap": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"inlineSources": false,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"preserveWatchOutput": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"removeComments": true
|
|
|
|
},
|
|
|
|
"exclude": ["**/node_modules/**", "**/dist/**"]
|
|
|
|
}
|