37 lines
981 B
JSON
37 lines
981 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
/* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
|
|
"@/*": ["./src/*"],
|
|
"@shared/*": ["../shared/lib/*"],
|
|
"@ui/*": ["./src/components/ui/*"],
|
|
"@lib": ["./src/lib"]
|
|
},
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"../shared/lib/contexts/common/domain/entities/QueryCriteria/Pagination/defaults.ts"
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|