Files
DefinitelyTyped/types/frida-gum/tsconfig.json
Ole André Vadla Ravnås fc5a3acff8 Add type definitions for frida-gum (#35911)
* Add type definitions for frida-gum

Consumed through frida-compile, e.g. like this:

    https://github.com/oleavr/frida-agent-example

* Delete redundant declare keywords
2019-06-10 18:31:05 -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",
"frida-gum-tests.ts"
]
}