mirror of
https://github.com/pockethost/pockethost.git
synced 2025-05-19 13:26:42 +00:00
31 lines
690 B
JSON
31 lines
690 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"],
|
|
"$constants": ["src/constants"],
|
|
"$src/*": ["src/*"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"esm": true
|
|
},
|
|
"include": ["./src"]
|
|
}
|