mirror of
https://github.com/amark/gun.git
synced 2025-03-30 15:08:33 +00:00

* New GUN typings * Fixing comments * Gun schema is now supported Co-authored-by: dbaranov <dbaranov@bellintegrator.com>
18 lines
444 B
JSON
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"
|
|
]
|
|
}
|