Files
Test-IP/tsconfig.json
T

18 lines
449 B
JSON
Raw Normal View History

2026-07-12 18:17:53 +07:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ESNext"],
"types": ["bun"],
"strict": true,
"skipLibCheck": true,
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true
},
"include": ["src"]
}