16 lines
325 B
JSON
16 lines
325 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ES2022",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noImplicitReturns": true
|
||
|
|
},
|
||
|
|
"include": ["*.ts"]
|
||
|
|
}
|