DefinitelyTyped/types/facepaint/tsconfig.json
Anton Samper Rivaya d9b441c45d [facepaint] Add type definitions (#34249)
* adding facepaint typings

* lint fixes

* removing module declaration

* removing comment

* adding namespace and declaring single export value
2019-04-01 14:49:59 -07:00

24 lines
490 B
JSON

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