25 lines
537 B
JSON
25 lines
537 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"removeComments": true,
|
|
"rootDir": "src",
|
|
"outDir": "build",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"strictBindCallApply": false,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
"declaration": true,
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
}
|