mirror of
https://github.com/rstackjs/agent-skills.git
synced 2026-09-14 20:07:05 +08:00
27 lines
619 B
JSON
27 lines
619 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "ESNext"],
|
|
"jsx": "preserve",
|
|
"target": "ES2022",
|
|
"types": ["node"],
|
|
"skipLibCheck": true,
|
|
"useDefineForClassFields": true,
|
|
|
|
/* modules */
|
|
"module": "ES2022",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": true,
|
|
"resolveJsonModule": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
/* type checking */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true
|
|
},
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Base"
|
|
}
|