lucy-cli 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. package/.drone/.drone.yml +156 -0
  2. package/.drone/mail_prod_build.hbs +319 -0
  3. package/.drone/mail_prod_deploy.hbs +309 -0
  4. package/.drone/mail_satges.hbs +309 -0
  5. package/.drone/telegram_prod_build.tpl +23 -0
  6. package/.drone/telegram_prod_deploy.tpl +20 -0
  7. package/.drone/telegram_stages.tpl +20 -0
  8. package/.eslintrc.cjs +96 -0
  9. package/.eslintrc.json +3 -0
  10. package/.nvmrc +1 -0
  11. package/.yarnrc.yml +5 -0
  12. package/README.md +1 -0
  13. package/dist/Gulpfile.d.ts +28 -0
  14. package/dist/Gulpfile.js +179 -0
  15. package/dist/cli.d.ts +2 -0
  16. package/dist/cli.js +44 -0
  17. package/dist/dev.d.ts +1 -0
  18. package/dist/dev.js +14 -0
  19. package/dist/gulp/backend copy.d.ts +4 -0
  20. package/dist/gulp/backend copy.js +50 -0
  21. package/dist/gulp/backend.d.ts +4 -0
  22. package/dist/gulp/backend.js +49 -0
  23. package/dist/gulp/checks.d.ts +3 -0
  24. package/dist/gulp/checks.js +119 -0
  25. package/dist/gulp/clean copy.d.ts +2 -0
  26. package/dist/gulp/clean copy.js +19 -0
  27. package/dist/gulp/clean.d.ts +1 -0
  28. package/dist/gulp/clean.js +14 -0
  29. package/dist/gulp/copy.d.ts +3 -0
  30. package/dist/gulp/copy.js +22 -0
  31. package/dist/gulp/pages copy.d.ts +3 -0
  32. package/dist/gulp/pages copy.js +22 -0
  33. package/dist/gulp/pages.d.ts +3 -0
  34. package/dist/gulp/pages.js +22 -0
  35. package/dist/gulp/public.d.ts +4 -0
  36. package/dist/gulp/public.js +50 -0
  37. package/dist/gulp/styles.d.ts +3 -0
  38. package/dist/gulp/styles.js +17 -0
  39. package/dist/gulp/templates.d.ts +1 -0
  40. package/dist/gulp/templates.js +21 -0
  41. package/dist/gulp/types.d.ts +5 -0
  42. package/dist/gulp/types.js +73 -0
  43. package/dist/index.d.ts +2 -0
  44. package/dist/index.js +88 -0
  45. package/dist/init.d.ts +7 -0
  46. package/dist/init.js +176 -0
  47. package/dist/settings.json +91 -0
  48. package/files/.drone/.drone.yml +156 -0
  49. package/files/.drone/mail_prod_build.hbs +319 -0
  50. package/files/.drone/mail_prod_deploy.hbs +309 -0
  51. package/files/.drone/mail_satges.hbs +309 -0
  52. package/files/.drone/telegram_prod_build.tpl +23 -0
  53. package/files/.drone/telegram_prod_deploy.tpl +20 -0
  54. package/files/.drone/telegram_stages.tpl +20 -0
  55. package/files/.eslintrc.cjs +96 -0
  56. package/files/.eslintrc.json +3 -0
  57. package/files/.nvmrc +1 -0
  58. package/files/.yarnrc.yml +5 -0
  59. package/files/currents.config.js +5 -0
  60. package/files/cypress.config.ts +12 -0
  61. package/files/docs.tsconfig.json +37 -0
  62. package/files/jest.config.ts +28 -0
  63. package/files/lucy.json +5 -0
  64. package/files/tsconfig.json +51 -0
  65. package/files/typedoc.json +19 -0
  66. package/files/typescript/.eslintrc.json +35 -0
  67. package/files/typescript/__mocks__/.gitkeep +0 -0
  68. package/files/typescript/backend/index.ts +0 -0
  69. package/files/typescript/backend/permissions.json +0 -0
  70. package/files/typescript/pages/.gitkeep +0 -0
  71. package/files/typescript/public/index.ts +0 -0
  72. package/files/typescript/styles/.gitkeep +0 -0
  73. package/files/typescript/styles/global.scss +0 -0
  74. package/files/typescript/tsconfig.json +45 -0
  75. package/files/typescript/types/.gitkeep +0 -0
  76. package/package.json +83 -0
  77. package/settings/backend-settings.json +19 -0
  78. package/settings/master-settings.json +17 -0
  79. package/settings/page-settings.json +18 -0
  80. package/settings/public-settings.json +21 -0
  81. package/src/Gulpfile.ts +271 -0
  82. package/src/dev.ts +20 -0
  83. package/src/gulp/backend.ts +52 -0
  84. package/src/gulp/checks.ts +127 -0
  85. package/src/gulp/clean.ts +21 -0
  86. package/src/gulp/copy.ts +26 -0
  87. package/src/gulp/pages.ts +25 -0
  88. package/src/gulp/public.ts +56 -0
  89. package/src/gulp/styles.ts +20 -0
  90. package/src/gulp/templates.ts +25 -0
  91. package/src/gulp/types.ts +87 -0
  92. package/src/index.ts +132 -0
  93. package/src/init.ts +191 -0
  94. package/src/settings.json +91 -0
  95. package/src/types.d.ts +5 -0
  96. package/tsconfig.json +34 -0
@@ -0,0 +1,96 @@
1
+ module.exports = {
2
+ extends: ['eslint:recommended', 'plugin:import/recommended', 'plugin:jsdoc/recommended', 'plugin:@typescript-eslint/recommended', 'plugin:@wix/cli/recommended'],
3
+ plugins: ['simple-import-sort', 'eslint-plugin-named-import-spacing', '@typescript-eslint'],
4
+ parser: '@typescript-eslint/parser',
5
+ ignorePatterns: ['src/**/*', 'typescript/types/backend/**/*', 'typescript/types/pages/**/*', 'typescript/types/public/**/*', 'typescript/types/node/**/*', '.wix/**/*', 'coverage/**/*', 'docs/**/*'],
6
+ rules: {
7
+ quotes: [2, 'single', { 'avoidEscape': true, 'allowTemplateLiterals': true }],
8
+ curly: ['error', 'multi-line'],
9
+ 'simple-import-sort/imports': 'error',
10
+ 'simple-import-sort/exports': 'error',
11
+ indent: ['error', 'tab'],
12
+ 'no-tabs': 0,
13
+ 'semi-style': ['error', 'last'],
14
+ semi: [2, 'always'],
15
+ 'object-curly-spacing': ['error', 'always'],
16
+ 'space-in-parens': ['error', 'never'],
17
+ 'newline-before-return': 'error',
18
+ 'space-before-blocks': ['error', { functions: 'always', keywords: 'never', classes: 'always' }],
19
+ 'comma-spacing': ['error', { before: false, after: true }],
20
+ 'no-multi-spaces': ['error'],
21
+ 'import/newline-after-import': ['error', { count: 1 }],
22
+ 'named-import-spacing/named-import-spacing': 2,
23
+ 'no-unused-vars': 'warn',
24
+ 'import/no-unresolved': [0],
25
+ 'no-forbidden-relative-imports': [0],
26
+ '@typescript-eslint/triple-slash-reference': 'off',
27
+ '@typescript-eslint/member-ordering': [
28
+ 'error',
29
+ { classes: ['constructor', 'private-instance-field', 'protected-instance-field', 'public-instance-field', 'public-instance-method', 'private-instance-method'] }
30
+ ],
31
+ '@typescript-eslint/naming-convention': [
32
+ 'error',
33
+ {
34
+ selector: ['variable', 'function'],
35
+ format: ['camelCase'],
36
+ leadingUnderscore: 'allow'
37
+ },
38
+ {
39
+ selector: ['objectLiteralProperty'],
40
+ format: null,
41
+ leadingUnderscore: 'allow'
42
+ },
43
+ {
44
+ selector: 'memberLike',
45
+ modifiers: ['private'],
46
+ format: ['camelCase'],
47
+ leadingUnderscore: 'require'
48
+ },
49
+ {
50
+ selector: 'memberLike',
51
+ modifiers: ['protected'],
52
+ format: ['camelCase'],
53
+ leadingUnderscore: 'require'
54
+ },
55
+ {
56
+ selector: 'memberLike',
57
+ modifiers: ['public'],
58
+ format: ['camelCase'],
59
+ leadingUnderscore: 'forbid'
60
+ },
61
+ {
62
+ selector: ['parameterProperty', 'parameter'],
63
+ format: ['camelCase'],
64
+ leadingUnderscore: 'forbid'
65
+ },
66
+ {
67
+ selector: 'default',
68
+ format: ['UPPER_CASE'],
69
+ leadingUnderscore: 'forbid',
70
+ trailingUnderscore: 'forbid',
71
+ custom: {
72
+ regex: '^[A-Z_]+$',
73
+ match: true
74
+ }
75
+ },
76
+ {
77
+ selector: 'typeLike',
78
+ format: ['PascalCase']
79
+ },
80
+ // Custom rule added
81
+ {
82
+ selector: 'function',
83
+ format: ['UPPER_CASE']
84
+ }
85
+ ],
86
+ },
87
+ root: true,
88
+ env: {
89
+ es6: true,
90
+ browser: true,
91
+ node: true
92
+ },
93
+ globals: {
94
+ $w: 'readonly'
95
+ }
96
+ };
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": ["plugin:@wix/cli/recommended"]
3
+ }
package/files/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ 20
@@ -0,0 +1,5 @@
1
+ nodeLinker: node-modules
2
+
3
+ npmRegistryServer: "https://registry.npmjs.org/"
4
+
5
+ yarnPath: .yarn/releases/yarn-3.7.0.cjs
@@ -0,0 +1,5 @@
1
+ module.exports = {
2
+ projectId: '__ProjectName__', // the projectId, can be any values for sorry-cypress users
3
+ recordKey: '__ProjectName__', // the record key, can be any value for sorry-cypress users
4
+ cloudServiceUrl: 'http://e2e.integral-systems.ch:1234', // Sorry Cypress users - set the director service URL
5
+ };
@@ -0,0 +1,12 @@
1
+ // cypress.config.js
2
+ import { defineConfig } from "cypress";
3
+ import { cloudPlugin } from "cypress-cloud/plugin";
4
+
5
+ module.exports = defineConfig({
6
+ videoCompression: 15,
7
+ e2e: {
8
+ setupNodeEvents(on, config) {
9
+ return cloudPlugin(on, config);
10
+ },
11
+ },
12
+ });
@@ -0,0 +1,37 @@
1
+ {
2
+ "compilerOptions": {
3
+ "outDir": "../src",
4
+ "rootDir": "../typescript",
5
+ "target": "ES2020",
6
+ "module": "ESNext",
7
+ "moduleResolution": "Node",
8
+ "preserveConstEnums": true,
9
+ "allowSyntheticDefaultImports": true,
10
+ "skipLibCheck": true,
11
+ "jsx": "react",
12
+ "declaration": true,
13
+ "strict": true,
14
+ "noImplicitAny": true,
15
+ "noImplicitReturns": true,
16
+ "noImplicitThis": true,
17
+ "strictNullChecks": true,
18
+ "strictBindCallApply": true,
19
+ "strictFunctionTypes": true,
20
+ "strictPropertyInitialization": true,
21
+ "experimentalDecorators": true,
22
+ "paths": {
23
+ "public/*": ["./public/*"],
24
+ "backend/*": ["./backend/*"],
25
+ "pages/*": ["./pages/*"],
26
+ "types/*": ["./types/*"]
27
+ },
28
+ "typeRoots": ["./types", "../node_modules/@types"]
29
+ },
30
+ "exclude": [
31
+ "../node_modules",
32
+ "../.wix",
33
+ "node_modules",
34
+ "./wix",
35
+ "./**/*.test.ts"
36
+ ]
37
+ }
@@ -0,0 +1,28 @@
1
+ import type { JestConfigWithTsJest} from 'ts-jest';
2
+
3
+ const config: JestConfigWithTsJest = {
4
+ verbose: true,
5
+ extensionsToTreatAsEsm: ['.ts'],
6
+ transform: {
7
+ '^.+\\.tsx?$': [
8
+ 'ts-jest',
9
+ {
10
+ tsconfig: './typescript/tsconfig.json',
11
+ usESM: true,
12
+ },
13
+ ],
14
+ },
15
+ preset: 'ts-jest',
16
+ setupFilesAfterEnv: [],
17
+ testEnvironment: 'node',
18
+ collectCoverage: true,
19
+ coverageDirectory: '../coverage',
20
+ coverageReporters: ['clover', 'json', 'lcov', 'text'],
21
+ rootDir: './typescript',
22
+ testMatch: ['**/*.spec.ts'],
23
+ moduleNameMapper: {
24
+ "public/(.*)": "<rootDir>/public/$1"
25
+ }
26
+ };
27
+
28
+ export default config;
@@ -0,0 +1,5 @@
1
+ {
2
+ "modules": {
3
+ "wix-lucy-lib": "git@github.com:Integral-Systems/wix-lucy-lib.git"
4
+ }
5
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "typeAcquisition": {
3
+ "enable": true
4
+ },
5
+ "compilerOptions": {
6
+ "outDir": "../src",
7
+ "rootDir": "../typescript",
8
+ "target": "ES2020",
9
+ "build": true,
10
+ "module": "ESNext",
11
+ "moduleResolution": "Node",
12
+ "preserveConstEnums": true,
13
+ "allowSyntheticDefaultImports": true,
14
+ "skipLibCheck": true,
15
+ "jsx": "react-jsx",
16
+ "lib": ["DOM"],
17
+ "declaration": true,
18
+ "strict": true,
19
+ "noEmitOnError": false,
20
+ "strictNullChecks": true,
21
+ "noImplicitAny": true,
22
+ "noImplicitReturns": true,
23
+ "noUncheckedIndexedAccess": true,
24
+ "noImplicitThis": true,
25
+ "strictBindCallApply": true,
26
+ "strictFunctionTypes": true,
27
+ "strictPropertyInitialization": true,
28
+ "experimentalDecorators": true,
29
+ "esModuleInterop": true,
30
+ "resolveJsonModule": true,
31
+ "paths": {
32
+ "public/*": ["./public/*"],
33
+ "backend/*": ["./backend/*"],
34
+ "pages/*": ["./pages/*"],
35
+ },
36
+ "plugins": [
37
+ {
38
+ "name": "typescript-hbs-plugin"
39
+ }
40
+ ]
41
+ },
42
+ "exclude": ["../node_modules", "../.wix", "node_modules", "./wix", "./**/*.spec.ts"],
43
+ "include":[
44
+ "public/**/*.tsx"
45
+ ],
46
+ "references": [
47
+ {
48
+ "path": "../jsconfig.json"
49
+ }
50
+ ]
51
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "entryPoints": ["typescript/**/*.ts"],
3
+ "entryPointStrategy": "expand",
4
+ "out": "docs",
5
+ "plugin": ["typedoc-theme-hierarchy"],
6
+ "theme": "hierarchy",
7
+ "tsconfig": "./typescript/docs.tsconfig.json",
8
+ "excludeExternals": true,
9
+ "externalPattern":[
10
+ "**/node_modules/**",
11
+ "./.wix/**",
12
+ ".wix/**"
13
+ ],
14
+ "exclude": [
15
+ "./.wix/**/*",
16
+ ".wix/**/*"
17
+ ],
18
+ "name": "Wix-lucy"
19
+ }
@@ -0,0 +1,35 @@
1
+ {
2
+ "extends": ["eslint:recommended", "plugin:import/recommended", "plugin:jsdoc/recommended","plugin:@typescript-eslint/recommended", "plugin:@wix/cli/recommended"],
3
+ "plugins": ["simple-import-sort", "destructuring-import-spacing", "@typescript-eslint"],
4
+ "parser": "@typescript-eslint/parser",
5
+ "rules": {
6
+ "curly": ["error", "multi-line"],
7
+ "simple-import-sort/imports": "error",
8
+ "simple-import-sort/exports": "error",
9
+ "indent": [2, "tab"],
10
+ "no-tabs": 0,
11
+ "semi-style": ["error", "last"],
12
+ "semi": [2, "always"],
13
+ "object-curly-spacing": ["error", "always"],
14
+ "space-in-parens": ["error", "never"],
15
+ "newline-before-return": "error",
16
+ "space-before-blocks": ["error", { "functions": "always", "keywords": "never", "classes": "always" }],
17
+ "comma-spacing": ["error", { "before": false, "after": true }],
18
+ "no-multi-spaces": ["error"],
19
+ "import/newline-after-import": ["error", { "count": 1 }],
20
+ "destructuring-import-spacing/destructuring-import-spacing": 2,
21
+ "no-unused-vars": "warn",
22
+ "import/no-unresolved": [0],
23
+ "no-forbidden-relative-imports": [0],
24
+ "@typescript-eslint/triple-slash-reference": "off"
25
+ },
26
+ "root": true,
27
+ "env": {
28
+ "es6": true,
29
+ "browser": true,
30
+ "node": true
31
+ },
32
+ "globals": {
33
+ "$w": "readonly"
34
+ }
35
+ }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,45 @@
1
+ {
2
+ "typeAcquisition": {
3
+ "enable": true
4
+ },
5
+ "compilerOptions": {
6
+ "outDir": "../src",
7
+ "rootDir": "../typescript",
8
+ "target": "ES2020",
9
+ "module": "ESNext",
10
+ "moduleResolution": "Node",
11
+ "preserveConstEnums": true,
12
+ "allowSyntheticDefaultImports": true,
13
+ "skipLibCheck": true,
14
+ "declaration": true,
15
+ "strict": true,
16
+ "noImplicitAny": true,
17
+ "noImplicitReturns": true,
18
+ "noImplicitThis": true,
19
+ "strictNullChecks": true,
20
+ "strictBindCallApply": true,
21
+ "strictFunctionTypes": true,
22
+ "strictPropertyInitialization": true,
23
+ "resolveJsonModule": true,
24
+ "paths": {
25
+ "public/*": ["./public/*"],
26
+ "backend/*": ["./backend/*"],
27
+ "pages/*": ["./pages/*"],
28
+ "types/*": ["./types/*"],
29
+ },
30
+ "typeRoots": [
31
+ "./types",
32
+ "../node_modules/@types"
33
+ ]
34
+ },
35
+ "exclude": ["../node_modules", "../.wix", "node_modules", "./wix", "./**/*.test.ts"],
36
+ "include":[
37
+ "!*.d.ts",
38
+ "public/**/*.tsx",
39
+ ],
40
+ "references": [
41
+ {
42
+ "path": "../jsconfig.json"
43
+ }
44
+ ]
45
+ }
File without changes
package/package.json ADDED
@@ -0,0 +1,83 @@
1
+ {
2
+ "type": "module",
3
+ "name": "lucy-cli",
4
+ "version": "0.0.4",
5
+ "description": "Lucy Framwork for WIX Studio Editor",
6
+ "main": ".dist/index.js",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1",
9
+ "build": "tsc",
10
+ "dev": "tsc -w"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/Integral-Systems/wix-lucy-cli.git"
15
+ },
16
+ "keywords": [
17
+ "Framwork",
18
+ "WIX",
19
+ "Studio"
20
+ ],
21
+ "author": "Gradlon von Känel",
22
+ "license": "ISC",
23
+ "bugs": {
24
+ "url": "https://github.com/Integral-Systems/wix-lucy-cli/issues"
25
+ },
26
+ "homepage": "https://github.com/Integral-Systems/wix-lucy-cli#readme",
27
+ "bin": "./dist/index.js",
28
+ "dependencies": {
29
+ "@wix/cli": "^1.0.83",
30
+ "@wix/eslint-plugin-cli": "^1.0.1",
31
+ "chalk": "^5.3.0",
32
+ "cypress": "^12.17.2",
33
+ "cypress-cloud": "^1.9.3",
34
+ "gulp": "^4.0.2",
35
+ "gulp-clean": "^0.4.0",
36
+ "gulp-cli": "^2.3.0",
37
+ "gulp-esbuild": "^0.11.2",
38
+ "gulp-exec": "^5.0.0",
39
+ "gulp-foreach": "^0.1.0",
40
+ "gulp-if": "^3.0.0",
41
+ "gulp-insert": "^0.5.0",
42
+ "gulp-json-editor": "^2.5.7",
43
+ "gulp-rename": "^2.0.0",
44
+ "gulp-sass": "^5.1.0",
45
+ "gulp-shell": "^0.8.0",
46
+ "gulp-string-replace": "^1.1.2",
47
+ "gulp-tap": "^2.0.0",
48
+ "gulp-typescript": "^6.0.0-alpha.1",
49
+ "gulp-wait": "^0.0.2",
50
+ "jest": "^29.6.1",
51
+ "merge-stream": "^2.0.0",
52
+ "prettier": "^3.0.3",
53
+ "sass": "^1.65.1",
54
+ "simple-git": "^3.20.0",
55
+ "ts-jest": "^29.1.1",
56
+ "typedoc": "^0.25.1",
57
+ "typedoc-theme-hierarchy": "^4.0.0",
58
+ "velo-sync": "^0.0.9"
59
+ },
60
+ "devDependencies": {
61
+ "@types/fs-extra": "^11.0.4",
62
+ "@types/glob": "^8.1.0",
63
+ "@types/gulp": "^4.0.17",
64
+ "@types/gulp-insert": "^0.5.13",
65
+ "@types/gulp-json-editor": "^2.2.36",
66
+ "@types/gulp-rename": "^2.0.6",
67
+ "@types/gulp-sass": "^5.0.4",
68
+ "@types/gulp-tap": "^1.0.5",
69
+ "@types/jest": "^29.5.3",
70
+ "@types/merge-stream": "^1.1.5",
71
+ "@typescript-eslint/eslint-plugin": "^5.61.0",
72
+ "@typescript-eslint/parser": "^5.61.0",
73
+ "@typescript-eslint/utils": "^5.61.0",
74
+ "esbuild": "^0.18.11",
75
+ "eslint": "^8.25.0",
76
+ "eslint-plugin-import": "^2.27.5",
77
+ "eslint-plugin-jsdoc": "^46.4.3",
78
+ "eslint-plugin-named-import-spacing": "^1.0.3",
79
+ "eslint-plugin-simple-import-sort": "^10.0.0",
80
+ "ts-node": "^10.9.1",
81
+ "typescript": "^5.1.6"
82
+ }
83
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "compilerOptions": {
3
+ "experimentalDecorators": true,
4
+ "noUncheckedIndexedAccess": true,
5
+ "jsx": "react-jsx",
6
+ "strict": true,
7
+ "strictNullChecks": true,
8
+ "paths": {
9
+ "backend/*": ["../../../typescript/backend/*"],
10
+ "wix-types/*": ["../wix-code-types/dist/types/*"],
11
+ "types/*": ["../../../typescript/types/*"]
12
+ }
13
+ },
14
+ "include": [
15
+ "../../../typescript/__mocks__/**/*",
16
+ "../../../typescript/backend/**/*.json",
17
+ "../../../typescript/backend/**/*"
18
+ ]
19
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "compilerOptions": {
3
+ "strict": true,
4
+ "strictNullChecks": true,
5
+ "composite": true,
6
+ "jsx": "react-jsx",
7
+ "noEmit": false,
8
+ "noUncheckedIndexedAccess": true,
9
+ "lib": ["DOM"],
10
+ "paths": {
11
+ "backend/*": ["../../../typescript/backend/*"],
12
+ "wix-types/*": ["../wix-code-types/dist/types/*"],
13
+ "types/*": ["../../../typescript/types/*"]
14
+ }
15
+ },
16
+ "include": ["../../../typescript/backend/**/*"]
17
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "compilerOptions": {
3
+ "strict": true,
4
+ "strictNullChecks": true,
5
+ "experimentalDecorators": true,
6
+ "composite": true,
7
+ "jsx": "react-jsx",
8
+ "noEmit": false,
9
+ "noUncheckedIndexedAccess": true,
10
+ "lib": ["DOM"],
11
+ "paths": {
12
+ "backend/*": ["../../../typescript/backend/*"],
13
+ "wix-types/*": ["../wix-code-types/dist/types/*"],
14
+ "types/*": ["../../../typescript/types/*"]
15
+ }
16
+ },
17
+ "include": ["../../../typescript/backend/**/*"]
18
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "compilerOptions": {
3
+ "experimentalDecorators": true,
4
+ "noEmit": false,
5
+ "noUncheckedIndexedAccess": true,
6
+ "strict": true,
7
+ "jsx": "react-jsx",
8
+ "strictNullChecks": true,
9
+ "lib": ["DOM"],
10
+ "paths": {
11
+ "backend/*": ["../../../typescript/backend/*"],
12
+ "public/*": ["../../../typescript/public/*"],
13
+ "types/*": ["../../../typescript/types/*"],
14
+ "wix-types/*": ["../wix-code-types/dist/types/*"]
15
+ }
16
+ },
17
+ "include": [
18
+ "../../../typescript/__mocks__/**/*",
19
+ "../../../typescript/backend/**/*"
20
+ ]
21
+ }