PluginProbe
Slider Block by Sliderberg – WordPress Slider & Carousel Plugin for Gutenberg / trunk
Slider Block by Sliderberg – WordPress Slider & Carousel Plugin for Gutenberg vtrunk
1.2.3 1.2.2 1.2.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.7 1.0.8 1.0.9
sliderberg / tsconfig.json

tsconfig.json in Slider Block by Sliderberg – WordPress Slider & Carousel Plugin for Gutenberg trunk, at tsconfig.json

30 lines 799 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "compilerOptions": {
3 "target": "es5",
4 "module": "esnext",
5 "moduleResolution": "node",
6 "jsx": "react",
7 "strict": true,
8 "esModuleInterop": true,
9 "skipLibCheck": true,
10 "forceConsistentCasingInFileNames": true,
11 "lib": ["dom", "dom.iterable", "esnext"],
12 "allowJs": true,
13 "allowSyntheticDefaultImports": true,
14 "noFallthroughCasesInSwitch": true,
15 "resolveJsonModule": true,
16 "isolatedModules": true,
17 "noEmit": false,
18 "outDir": "build",
19 "baseUrl": ".",
20 "paths": {
21 "@/*": ["src/*"],
22 "@sliderberg/shared": ["../shared/src/index.ts"],
23 "@sliderberg/shared/*": ["../shared/src/*"]
24 },
25 "typeRoots": ["./node_modules/@types", "./src/types"]
26 },
27 "include": ["src/**/*"],
28 "exclude": ["node_modules", "build"]
29 }
30