@markuplint-dev/tsconfig 1.0.0-alpha.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/CHANGELOG.md ADDED
@@ -0,0 +1,11 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # 1.0.0-alpha.1 (2024-06-02)
7
+
8
+
9
+ ### Features
10
+
11
+ * **tsconfig:** moved TypeScript configuration to `@markuplint-dev/tsconfig` ([4788294](https://github.com/markuplint/markuplint/commit/4788294cce1e864798925ce307b222d46be177e2))
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@markuplint-dev/tsconfig",
3
+ "version": "1.0.0-alpha.1",
4
+ "description": "TypeScript configuration for Markuplint projects",
5
+ "repository": "git@github.com:markuplint/markuplint.git",
6
+ "author": "Yusuke Hirao <yusukehirao@me.com>",
7
+ "license": "MIT",
8
+ "private": false,
9
+ "type": "commonjs",
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "gitHead": "b1cabc178e3553fd66c7ed4357b4124eb2585327"
14
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "compilerOptions": {
3
+ "module": "NodeNext",
4
+ "target": "ES2020",
5
+ "strict": true,
6
+ "strictNullChecks": true,
7
+ "strictPropertyInitialization": true,
8
+ "allowSyntheticDefaultImports": true,
9
+ "experimentalDecorators": true,
10
+ "esModuleInterop": true,
11
+ "noImplicitAny": true,
12
+ "noUncheckedIndexedAccess": true,
13
+ "declaration": true,
14
+ "lib": ["dom", "es2015", "es2016", "es2017", "es2018", "es2019", "esnext"],
15
+ "skipLibCheck": true
16
+ },
17
+ "exclude": ["node_modules"]
18
+ }