PluginProbe
Pay with Vipps and MobilePay for WooCommerce / 6.2.1
Pay with Vipps and MobilePay for WooCommerce v6.2.1
6.2.1 6.2.0 6.1.10 6.1.9 6.1.8 6.1.7 6.1.6 6.1.5 6.1.4 6.1.3 6.1.2 6.1.1 6.1.0 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 6.0.0 5.4.3 5.4.2 5.4.1 5.4.0 5.3.4 trunk All 183 releases
woo-vipps / payment / src / admin / blocks / tsconfig.json

tsconfig.json in Pay with Vipps and MobilePay for WooCommerce 6.2.1, at payment/src/admin/blocks/tsconfig.json

35 lines 767 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "compilerOptions": {
3 "target": "es2019",
4 "module": "esnext",
5 "moduleResolution": "node",
6 "allowJs": true,
7 "strict": true,
8 "esModuleInterop": true,
9 "skipLibCheck": true,
10 "jsx": "react",
11 "jsxFactory": "createElement",
12 "jsxFragmentFactory": "Fragment",
13 "rootDir": "src",
14 "outDir": "build-module",
15 "declaration": true,
16 "declarationMap": true,
17 "declarationDir": "./build-types",
18 "resolveJsonModule": true,
19 "typeRoots": [ "./typings", "./node_modules/@types" ]
20 },
21 "exclude": [
22 "node_modules",
23 "**/stories",
24 "**/build",
25 "**/build-module",
26 "**/build-types",
27 "**/test/*",
28 "**/jest.config.js",
29 "**/jest-preset.js",
30 "**/webpack.*.js",
31 "**/babel.config.js"
32 ],
33 "include": [ "**/*.d.ts", "src/**/*", "src/**/*.json" ]
34 }
35