vibetunnel/web/tsconfig.base.json

20 lines
No EOL
536 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"incremental": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"useDefineForClassFields": false,
"typeRoots": ["./node_modules/@types"],
"inlineSourceMap": true,
"inlineSources": true
}
}