mirror of
https://github.com/whyour/qinglong.git
synced 2026-09-21 00:36:13 +08:00
22 lines
508 B
JSON
22 lines
508 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"lib": ["ES2022"],
|
|
"types": ["node"],
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": false
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|