[accept-language-parser] Add accept-language-parser

This commit adds initial support for the accept-language-parser module which is currently at version 1.4.1

I am not in any way related to the module.
This commit is contained in:
Niklas Wulf
2017-09-21 12:15:46 +02:00
parent c1534fd023
commit d73ea3885a
4 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": ["../"],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": ["index.d.ts", "accept-language-parser-tests.ts"]
}