mirror of
https://github.com/pockethost/pockethost.git
synced 2026-03-05 08:38:39 +00:00
20 lines
468 B
JSON
20 lines
468 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"module": "ES2015",
|
|
"moduleResolution": "node",
|
|
"noUncheckedIndexedAccess": true,
|
|
"strictNullChecks": true,
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"inlineSourceMap": true,
|
|
"lib": ["ES2015"]
|
|
},
|
|
"include": ["./src"]
|
|
}
|