18 lines
346 B
JSON
18 lines
346 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
/* Type Checking */
|
|
"strict": true,
|
|
"lib": ["DOM", "WebWorker", "ESNext"],
|
|
|
|
/* Completeness */
|
|
"skipLibCheck": true
|
|
}
|
|
}
|