18 lines
439 B
JSON
18 lines
439 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"target": "ES2023",
|
|
"lib": ["ES2023", "DOM"],
|
|
"verbatimModuleSyntax": true,
|
|
"allowImportingTsExtensions": false,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"types": ["node", "bun-types"]
|
|
},
|
|
"include": ["src", "tests", "scripts", "docs"]
|
|
}
|