16 lines
358 B
JSON
16 lines
358 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "esnext",
|
|
"target": "ES2020",
|
|
"moduleResolution": "bundler",
|
|
"moduleDetection": "force",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"esModuleInterop": true,
|
|
},
|
|
"include": ["./src/**/*"],
|
|
}
|