DefinitelyTyped/types/md5/tsconfig.json
Cameron Crothers ff774c2c64 Fix error TS2497 on import * as X from 'md5': (#15584)
* Add support for es6 import syntax

* Remove bad test name

* Remove old test from tsconfig
2017-04-17 08:42:55 -07:00

23 lines
448 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"md5-tests.ts"
]
}