ulthar-framework/tsconfig.json
2024-09-04 19:14:57 -03:00

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
}
}