gun/tsconfig.json
Orimay d53d157f19
New GUN typings (#1205)
* New GUN typings

* Fixing comments

* Gun schema is now supported

Co-authored-by: dbaranov <dbaranov@bellintegrator.com>
2022-02-18 23:17:41 -08:00

18 lines
444 B
JSON

{
"compilerOptions": {
"emitDeclarationOnly": true,
"declaration": true,
},
"include": [
// only compile the type definitions by default.
// That is, ignore the files in 'examples/**'
"**/*.d.ts"
],
"exclude": [
// Among the type definitions, don't try to compile
// the test file which implements bad types.
// It implements bad types for testing purposes.
"**/*.test-d.ts"
]
}