pockethost/tsconfig.json
2024-02-29 11:50:33 -08:00

29 lines
706 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"],
"$services": ["src/services"],
"$constants": ["src/constants"],
"$src/*": ["src/*"],
"$shared": ["src/shared"]
}
},
"include": ["./src", "./buildtool", "plopfile.mjs"]
}