gatelogue-types
Version:
Types for loading and reading Gatelogue data
43 lines (35 loc) • 1.03 kB
JSON
/* https://www.totaltypescript.com/tsconfig-cheat-sheet */
{
"include": ["lib.ts"],
"compilerOptions": {
/* Base Options: */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "esnext",
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
"verbatimModuleSyntax": true,
/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
/* If transpiling with TypeScript: */
"module": "NodeNext",
"outDir": "dist",
"sourceMap": true,
/* AND if you're building for a library: */
"declaration": true,
/* AND if you're building for a library in a monorepo: */
"composite": true,
"declarationMap": true,
/* If NOT transpiling with TypeScript:
"module": "preserve",
"noEmit": true, */
/* If your code runs in the DOM: */
"lib": ["esnext", "dom", "dom.iterable"]
/* If your code doesn't run in the DOM:
"lib": ["es2022"], */
}
}