DefinitelyTyped/types/gulp/tsconfig.json

26 lines
528 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
2016-05-09 20:52:25 +00:00
"baseUrl": "../",
"typeRoots": [
2016-05-10 19:24:49 +00:00
"../"
],
"jsx": "react",
"types": [],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
2017-10-06 21:03:03 +00:00
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true
},
"files": [
"index.d.ts",
"test/index.ts"
]
}