elementor
Last commit date
app
2 years ago
assets
2 years ago
core
2 years ago
data
3 years ago
includes
2 years ago
modules
2 years ago
changelog.txt
2 years ago
elementor.php
2 years ago
license.txt
3 years ago
phpcs.xml
3 years ago
readme.txt
2 years ago
run-on-linux.js
2 years ago
tsconfig.json
2 years ago
tsconfig.json
31 lines
| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/tsconfig", |
| 3 | "display": "Node 18 + ESM + Strictest", |
| 4 | "compilerOptions": { |
| 5 | "lib": [ |
| 6 | "es2022" |
| 7 | ], |
| 8 | "module": "commonjs", |
| 9 | "target": "ES6", |
| 10 | "declaration": true, |
| 11 | "declarationMap": true, |
| 12 | "esModuleInterop": true, |
| 13 | "skipLibCheck": true, |
| 14 | "forceConsistentCasingInFileNames": true, |
| 15 | "moduleResolution": "node", |
| 16 | "allowUnusedLabels": false, |
| 17 | "allowUnreachableCode": false, |
| 18 | "noFallthroughCasesInSwitch": true, |
| 19 | "noImplicitOverride": true, |
| 20 | "noImplicitReturns": true, |
| 21 | "noImplicitAny": true, |
| 22 | "noPropertyAccessFromIndexSignature": false, |
| 23 | "noUncheckedIndexedAccess": true, |
| 24 | "noUnusedLocals": true, |
| 25 | "noUnusedParameters": true, |
| 26 | "checkJs": false, |
| 27 | "allowJs": false, |
| 28 | "resolveJsonModule": true |
| 29 | } |
| 30 | } |
| 31 |