Files
DefinitelyTyped/types/uuid/tsconfig.json
Felipe 7bb204fdb5 update uuid to v3 (#16264)
* update uuid to v3

- remove the parse/unparse functions
- allow importing 'uuid/v1' and 'uuid/v4' directly
- keep v2 typings as 'uuid-v2'

* Fix v2 folder naming
2017-06-01 07:53:41 -07:00

28 lines
567 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"alwaysStrict": true,
"strict": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"v1.d.ts",
"v4.d.ts",
"interfaces.d.ts",
"uuid-tests.ts"
]
}