mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-07 22:38:13 +08:00
* [adone] refactoring, new typings * refactor to namespace style * move adone.run to adone.application * [std] remove unnecessary std.ts code * move is and x to separate dirs * init collections, add LinkedList typings, move ExBuffer here * init event, move EventEmitter and AsyncEmitter here * init fs * init fast * init streams, add core typings * remove common * [util] add userdir, LogRotator, debounce, uuid.v3, fix entries * [shani] add spy.waitFor* definitions * [is] add descriptions * [promise] callbackify * [adone] rename is.exbuffer to is.byteArray * [adone] add data typings * [adone] rename is.exdate to is.datetime * [adone] fs fixes * [adone] add datetime typings * [adone] improve datetime help messages * [adone] math * decomposition * add descriptions for Long * add typings for matrix, simd, BitSet, BigNumber, random * collections, math * add some lazify options * [collections] add help messages for ByteArray * [collections] add typings for Queue, AsyncQueue, PriorityQueue, FastLRU, Stack, BinarySearchTree, AVLTree, RedBlackTree, ArraySet, BufferList, DefaultMap, LRU, TimedoutMap * [math] add missing BitSet methods, normalize help messages * [adone] compressors, fast * [fast] change FIle.is* methods * [compressors] init * [adone] archives, fs, datetime * [archives] init, tar, zip * [fs] add AbstractRandomAccessReader, RandomAccessFdReader, RandomAccessBufferReader * [datetime] add support for ms-dos format * is, streams, fast * [fast] fix typo * [is] fix fast stream predicates, add some runtime predicates * [streams] more detailed core help messages
67 lines
1.9 KiB
JSON
67 lines
1.9 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"adone.d.ts",
|
|
"glosses/math/index.d.ts",
|
|
"glosses/math/matrix.d.ts",
|
|
"glosses/math/simd.d.ts",
|
|
"glosses/std.d.ts",
|
|
"glosses/utils.d.ts",
|
|
"glosses/assertion.d.ts",
|
|
"glosses/promise.d.ts",
|
|
"glosses/shani.d.ts",
|
|
"glosses/shani-global.d.ts",
|
|
"glosses/collections.d.ts",
|
|
"glosses/events.d.ts",
|
|
"glosses/fs.d.ts",
|
|
"glosses/is.d.ts",
|
|
"glosses/exceptions.d.ts",
|
|
"glosses/streams.d.ts",
|
|
"glosses/fast.d.ts",
|
|
"glosses/data.d.ts",
|
|
"glosses/datetime.d.ts",
|
|
"glosses/compressors.d.ts",
|
|
"glosses/archives.d.ts",
|
|
"adone-tests.ts",
|
|
"test/index.ts",
|
|
"test/index-import.ts",
|
|
"test/glosses/math/index.ts",
|
|
"test/glosses/math/matrix.ts",
|
|
"test/glosses/math/simd.ts",
|
|
"test/glosses/std.ts",
|
|
"test/glosses/utils.ts",
|
|
"test/glosses/assertion.ts",
|
|
"test/glosses/promise.ts",
|
|
"test/glosses/shani.ts",
|
|
"test/glosses/shani-global.ts",
|
|
"test/glosses/collections.ts",
|
|
"test/glosses/events.ts",
|
|
"test/glosses/fs.ts",
|
|
"test/glosses/is.ts",
|
|
"test/glosses/exceptions.ts",
|
|
"test/glosses/streams.ts",
|
|
"test/glosses/fast.ts",
|
|
"test/glosses/data.ts",
|
|
"test/glosses/datetime.ts",
|
|
"test/glosses/compressors.ts",
|
|
"test/glosses/archives.ts"
|
|
]
|
|
}
|