DefinitelyTyped/types/select2/tsconfig.json
denis cee3ed3197 Linting v4
Remove all but unified-signatures rules in tslint.
Activate noImplicitAny and noImplicitThis.
Change code in select2-test and index according to the new styling
rules.
2018-03-17 13:57:01 +01:00

24 lines
507 B
JSON

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