mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 13:37:35 +00:00
* Initial version of types for artyom.js * Added headers and documentation * Removed tslint exception In local, the npm run lint said that this header is not allowed, but in travis seems to work * Added "noImplicitThis": true, * Added MAJOR.MINOR to .d.ts header
21 lines
432 B
JSON
21 lines
432 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitThis": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"artyom.js-tests.ts"
|
|
]
|
|
}
|