22 lines
605 B
JSON
22 lines
605 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ES2020",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"lib": ["ES2020", "DOM"],
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"emitDecoratorMetadata": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noUnusedLocals": false,
|
||
|
|
"noUnusedParameters": false
|
||
|
|
}
|
||
|
|
}
|