DefinitelyTyped/types/buble/tsconfig.json
Hugo Alliaume 2a76edab65 feat: add typings for Buble (#32515)
* chore(buble): setup

* feat(buble): implement tons of options and tests

* feat(buble): export interfaces, this can be useful

* feat(buble): add "includeContent" option

* fix(buble): add "dom" lib, fix sourcemap and linting issues
2019-01-26 10:50:34 -08:00

25 lines
505 B
JSON

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