PluginProbe ʕ •ᴥ•ʔ
Automation Web Platform – Notifications and OTP for WooCommerce, Advanced Country Code / 4.8.6
Automation Web Platform – Notifications and OTP for WooCommerce, Advanced Country Code v4.8.6
4.8.6 4.8.5 4.8.4 trunk 4.8.3
automation-web-platform / app / tsconfig.node.json
automation-web-platform / app Last commit date
app 1 month ago components 1 month ago dist 1 week ago public 1 month ago src 1 week ago index.html 1 month ago index.php 1 month ago package.json 1 day ago tsconfig.app.json 2 weeks ago tsconfig.json 1 month ago tsconfig.node.json 1 month ago vite.config.ts 2 weeks ago
tsconfig.node.json
27 lines
1 {
2 "compilerOptions": {
3 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4 "target": "ES2023",
5 "lib": ["ES2023"],
6 "module": "ESNext",
7 "types": ["node"],
8 "skipLibCheck": true,
9
10 /* Bundler mode */
11 "moduleResolution": "bundler",
12 "allowImportingTsExtensions": true,
13 "verbatimModuleSyntax": true,
14 "moduleDetection": "force",
15 "noEmit": true,
16
17 /* Linting */
18 "strict": true,
19 "noUnusedLocals": true,
20 "noUnusedParameters": true,
21 "erasableSyntaxOnly": true,
22 "noFallthroughCasesInSwitch": true,
23 "noUncheckedSideEffectImports": true
24 },
25 "include": ["vite.config.ts"]
26 }
27