Files
DefinitelyTyped/types/is-number/tsconfig.json
Harry Shipton b166083928 [is-number] Added type definitions (#19005)
[is-number] Changed from ES6 default to export=

[is-number] Allow synthetic default imports

[is-number] Change function in tests to pass linter
2017-08-16 10:04:04 -07:00

24 lines
499 B
JSON

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