mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-11 19:42:23 +08:00
* support es6 import syntax * support es6 import syntax * add author * test import syntax to es6 * add tslint config * tslint: Interface has only a call signature * tslint: ban-types * tslint: no-misused-new * tslint: semicolon * tslint: TypeScript compile error: Cannot find name 'object'. * tslint: unified-signatures * tslint: disable unified-signatures, parameter name is different * tslint: object-literal-shorthand * tslint: one-variable-per-declaration * tslint: dt-header * tslint: no-single-declare-module * type definitions for images 2.2
23 lines
375 B
JSON
23 lines
375 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": false,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"images-tests.ts"
|
|
]
|
|
}
|