forked from thomas-lowry/figma-plugin-ds-svelte
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.json
More file actions
34 lines (34 loc) · 899 Bytes
/
project.json
File metadata and controls
34 lines (34 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "@tokilabs/figma-plugin-sdk",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/plugin/main/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/vite:build",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/plugin/main"
}
},
"test": {
"executor": "@nx/vite:test",
"outputs": ["{options.reportsDirectory}"],
"options": {
"passWithNoTests": true,
"reportsDirectory": "../../../coverage/libs/plugin/main"
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"libs/plugin/main/**/*.ts",
"libs/plugin/main/package.json"
]
}
}
},
"tags": ["figma", "plugin", "lib", "main"]
}