worldline-for-woocommerce
Last commit date
assets
1 week ago
inc
1 week ago
languages
1 week ago
modules
1 week ago
shared
1 week ago
src
1 week ago
vendor
1 week ago
.eslintrc.js
1 week ago
BUILD_INFO.txt
1 week ago
LICENSE
1 week ago
SECURITY.md
1 week ago
class-plugin.php
1 week ago
composer.json
1 week ago
config.php
1 week ago
package.json
1 week ago
readme.txt
1 week ago
tsconfig.json
1 week ago
uninstall.php
1 week ago
webpack.config.js
1 week ago
worldline-for-woocommerce.php
1 week 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 | } |