create-berna-stencil 2.2.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -12,7 +12,7 @@ Building a website from scratch involves a lot of moving parts: templating engin
12
12
  - 📁 **Scalable structure** — a clean, opinionated project layout that grows with your needs
13
13
  - 🌍 **Open source** — free to use, free to modify, free to share
14
14
 
15
- ![Version](https://img.shields.io/badge/version-2.2.0-blue)
15
+ ![Version](https://img.shields.io/badge/version-2.2.1-blue)
16
16
  ![License](https://img.shields.io/badge/license-Apache--2.0-blue)
17
17
  ![Eleventy](https://img.shields.io/badge/11ty-v3.1.2-black)
18
18
 
package/bin/create.js CHANGED
@@ -120,7 +120,7 @@ src/backend/config.php
120
120
 
121
121
  const PROJECT_PACKAGE = {
122
122
  name: path.basename(targetDir),
123
- version: '2.2.0',
123
+ version: '2.2.1',
124
124
  private: true,
125
125
  outputDir: 'out',
126
126
  "scripts": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-berna-stencil",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "Eleventy boilerplate with per-page SCSS/JS pipeline, esbuild bundling, multi-framework CSS support and a built-in page management CLI",
5
5
  "keywords": [],
6
6
  "author": "Michele Garofalo",
@@ -24,6 +24,7 @@
24
24
  ".eleventy.js",
25
25
  ".eleventyignore",
26
26
  ".gitignore",
27
+ "tsconfig.json",
27
28
  "LICENSE",
28
29
  "NOTICE"
29
30
  ],
package/tsconfig.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ // https://aka.ms/tsconfig
3
+
4
+ // Add options by uncommenting or adding "<key>": <value> pairs inside compilerOptions
5
+
6
+ "include": ["src/frontend/ts/**/*.ts"], // DO NOT CHANGE
7
+
8
+ "compilerOptions": {
9
+ "rootDir": "./src/frontend/ts", // DO NOT CHANGE
10
+ "outDir": "./out/ts", // DO NOT CHANGE
11
+ "module": "esnext", // DO NOT CHANGE
12
+ "target": "esnext", // DO NOT CHANGE
13
+ "types": [],
14
+ "noUncheckedIndexedAccess": true,
15
+ "exactOptionalPropertyTypes": true,
16
+ "strict": true,
17
+ "jsx": "react-jsx",
18
+ "verbatimModuleSyntax": true,
19
+ "isolatedModules": true,
20
+ "noUncheckedSideEffectImports": true,
21
+ "moduleDetection": "force",
22
+ "skipLibCheck": true
23
+ }
24
+ }