mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
29 lines
706 B
JSON
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"]
|
|
}
|