worldline-for-woocommerce
Last commit date
assets
3 months ago
inc
3 months ago
languages
3 months ago
modules
3 months ago
screenshots
3 months ago
shared
3 months ago
src
3 months ago
vendor
3 months ago
LICENSE
3 months ago
README.md
3 months ago
class-plugin.php
3 months ago
composer.json
3 months ago
config.php
3 months ago
package.json
3 months ago
readme.txt
3 months ago
tsconfig.json
3 months ago
uninstall.php
3 months ago
webpack.config.js
3 months ago
worldline-for-woocommerce.php
3 months ago
tsconfig.json
33 lines
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "es5", |
| 4 | "module": "es6", |
| 5 | "strict": true, |
| 6 | "removeComments": true, |
| 7 | "lib": [ |
| 8 | "dom", |
| 9 | "dom.iterable", |
| 10 | "esnext" |
| 11 | ], |
| 12 | "resolveJsonModule": true, |
| 13 | "importHelpers": true, |
| 14 | "moduleResolution": "bundler", |
| 15 | "declaration": false, |
| 16 | "esModuleInterop": true, |
| 17 | "noImplicitAny": false, |
| 18 | "noImplicitThis": true, |
| 19 | "strictNullChecks": true, |
| 20 | "jsx": "react", |
| 21 | "jsxFactory": "wp.element.createElement", |
| 22 | "jsxFragmentFactory": "wp.element.Fragment", |
| 23 | "sourceMap": true, |
| 24 | "noLib": false, |
| 25 | "suppressImplicitAnyIndexErrors": false, |
| 26 | "downlevelIteration": true |
| 27 | }, |
| 28 | "compileOnSave": false, |
| 29 | "exclude": [ |
| 30 | "node_modules", |
| 31 | "vendor" |
| 32 | ] |
| 33 | } |