Files
pockethost/tsconfig.json
2023-11-01 21:27:41 -07:00

34 lines
819 B
JSON

{
"compilerOptions": {
"lib": ["ES2021.String"],
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"$util": ["src/util/index"],
"$services": ["src/services/index"],
"$services/*": ["src/services/*"],
"$constants": ["src/constants"],
"$src/*": ["src/*"],
"$shared": ["src/shared"]
}
},
"ts-node": {
"esm": true
},
"include": ["./src"],
"exclude": ["./src/mothership-app/migrations/**/*"]
}