| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "compilerOptions": {
- "module": "es2020",
- "target": "esnext",
- "types": [
- "bootstrap-select",
- "jquery"
- ],
- "paths": {
- "@models/*": ["../src/models/*"]
- },
- "lib": ["es5", "es6", "dom"],
- "sourceMap": true,
- "declaration": true,
- "declarationMap": true,
- "noUncheckedIndexedAccess": true,
- "strict": true,
- "jsx": "react-jsx",
- "noUncheckedSideEffectImports": true,
- "moduleDetection": "force",
- "skipLibCheck": true,
- "outDir": "../build/front",
- "experimentalDecorators": true,
- "noImplicitAny": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "strictBindCallApply": true,
- "strictPropertyInitialization": true,
- "noImplicitThis": true,
- "alwaysStrict": true,
- "esModuleInterop": true,
- "removeComments": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noImplicitReturns": true,
- "forceConsistentCasingInFileNames": true
- }
- }
|