DefinitelyTyped/types/figma/tsconfig.json
Rudi Chen b1ccf5f624 Add typings for Figma Plugin API (#37748)
* add typings for Figma API

* small test file

* add note about contacting us

* lint

* header review
2019-08-20 12:45:36 -07:00

24 lines
486 B
JSON

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