cln-ledger

CLN ledger accounting
git clone git://jb55.com/cln-ledger
Log | Files | Refs

tsconfig.json (465B)


      1 {
      2     "compilerOptions": {
      3         "esModuleInterop": true,
      4         "allowSyntheticDefaultImports": true,
      5         "target": "es6",
      6         "noImplicitAny": true,
      7         "moduleResolution": "node",
      8         "sourceMap": true,
      9         "outDir": "dist",
     10         "baseUrl": ".",
     11         "paths": {
     12             "*": [
     13                 "node_modules/*",
     14                 "src/types/*"
     15             ]
     16         }
     17     },
     18     "include": [
     19 	"index.ts",
     20         "src/**/*"
     21     ]
     22 }