DefinitelyTyped/types/burns/tsconfig.json
Timothy Onyiuke 2a9265d8a2 Updated type definitions and enabled allowSyntheticDefaultImports (#34963)
* Added comments and updated definitions

* enabled allowSyntheticDefaultImports

* changed exports style and updated tests
2019-04-24 12:17:40 -05:00

26 lines
551 B
JSON

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