36 lines
705 B
JSON
36 lines
705 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
|
|
/* Projects */
|
|
|
|
/* Language and Environment */
|
|
"target": "ESNext",
|
|
|
|
/* Modules */
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
|
|
/* JavaScript Support */
|
|
"allowJs": true,
|
|
|
|
/* Emit */
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"noEmit": true,
|
|
|
|
/* Interop Constraints */
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
/* Type Checking */
|
|
"strict": true,
|
|
|
|
/* Completeness */
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true
|
|
}
|
|
}
|