23 lines
429 B
JSON
23 lines
429 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node",
|
|
"vitest/globals"
|
|
]
|
|
},
|
|
"include": [
|
|
"index.ts",
|
|
"setup-entry.ts",
|
|
"src/**/*.ts",
|
|
"test/**/*.ts"
|
|
]
|
|
}
|