CoolFace
Apppublic

exbert-project/exbert

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
183likes
tsconfig.json27 linesDownload Raw Back to src
1{2  "allowSyntheticDefaultImports": true,3  "compilerOptions": {4    "outDir": "../dist/",5    "module": "esnext",6    "target": "es2015",7    "moduleResolution": "node",8    "sourceMap": true,9    "lib": [10      "es2016",11      "dom"12    ],13    "typeRoots": [14      "./customTypings",15      "node_modules/@types"16    ]17  },18  "include": [19    "ts/**/*.ts"20  ],21  "exclude": [22    "node_modules",23    "types",24    "ts/test.ts"25  ]26}27