VN-Housing-App / frontend /tsconfig.json
A-New-Day-001's picture
Upload 1591 files
be5030f
raw
history blame contribute delete
744 Bytes
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
// Add this line to enable verbatimModuleSyntax
"verbatimModuleSyntax": true,
// Optionally, add this line to silence the deprecation warning
"ignoreDeprecations": "5.0"
},
"include": ["src/**/*"],
"exclude": ["node_modules/*", "__sapper__/*", "public/*"]
}