File "tsconfig.json"
Full Path: /var/www/html/front_back/workspace/Gitep-front/tsconfig.json
File size: 1.22 KB
MIME-type: text/plain
Charset: utf-8
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
// "allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
// "noEmit": false,
"jsx": "react-jsx",
/* Linting */
// "strict": true,
"strict": false,
//
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"strictFunctionTypes": false,
"strictPropertyInitialization": false,
"forceConsistentCasingInFileNames": false,
"allowJs": true,
"checkJs": false,
//
// "noUnusedLocals": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"baseUrl": "./",
"paths": {
"@app/*": ["src/app/*"],
"@features/*": ["src/features/*"],
"@pages/*": ["src/pages/*"],
"@shared/*": ["src/shared/*"]
},
"esModuleInterop": true
},
"include": ["src", "declarations.d.ts"]
}