@adamaho/nopeus-tsconfig 0.3.0 → 0.3.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 +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ belong to the consuming project.
|
|
|
18
18
|
|
|
19
19
|
## Install
|
|
20
20
|
|
|
21
|
-
Install
|
|
21
|
+
Install the package and TypeScript:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
24
|
pnpm add -D -E @adamaho/nopeus-tsconfig typescript@7.0.2
|
|
@@ -34,6 +34,9 @@ and combine `/base` with `/vite`:
|
|
|
34
34
|
}
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
+
After adding the config, run `pnpm exec tsc --showConfig` to inspect the
|
|
38
|
+
resolved options and `pnpm exec tsc --noEmit` to typecheck the project.
|
|
39
|
+
|
|
37
40
|
The base policy enables strict checking, exact optional properties, checked index
|
|
38
41
|
access, unused-local checks, explicit overrides, isolated modules, verbatim
|
|
39
42
|
module syntax, and TypeScript import extensions. It targets ES2022, checks
|