20 lines
488 B
JSON
20 lines
488 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "ESNext",
|
|
"lib": ["ES2024", "DOM.AsyncIterable"],
|
|
"moduleResolution": "Bundler",
|
|
"moduleDetection": "force",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"allowArbitraryExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": ["bun", "assets"],
|
|
"typeRoots": ["./types", "./node_modules/@types"]
|
|
}
|
|
}
|