DefinitelyTyped/types/astring/tsconfig.json
Nikolaj Kappler 0bf9264d1d added definitions for "astring" (#29815)
* added astring definitions

workstream:

* fixed linting

workstream:

* updated index.d.ts

added comment 
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

to fix test build

* updated tslint.json

workstream:

* added global scope support and removed redundant export

* fixed missing semicola.

* moved global test to own file.

* cleaned tslint.json

workstream:

* tslint.json: removed custom rules

probably fixes necessary, but local build does not produce any linting
errors...

workstream:

* tslint fixes

workstream:

* fix import

workstream:

* removed import in global test.
2018-10-18 12:07:58 -07:00

24 lines
531 B
JSON

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