20 lines
350 B
JSON
20 lines
350 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
/* Type Checking */
|
|
"strict": true,
|
|
|
|
/* Linting */
|
|
"noUnusedLocals": true,
|
|
|
|
/* Completeness */
|
|
"skipLibCheck": true
|
|
}
|
|
}
|