Skip to content

Commit 6245413

Browse files
committed
docs: Remove invalid TS extends in examples
1 parent f6e1c74 commit 6245413

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

examples/example-app-router-migration/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"extends": "eslint-config-molindo/tsconfig.json",
32
"compilerOptions": {
43
"target": "es5",
54
"lib": ["dom", "dom.iterable", "esnext"],
5+
"strict": true,
66
"allowJs": true,
77
"skipLibCheck": true,
88
"noEmit": true,

examples/example-app-router-mixed-routing/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"extends": "eslint-config-molindo/tsconfig.json",
32
"compilerOptions": {
43
"target": "es5",
54
"lib": ["dom", "dom.iterable", "esnext"],
5+
"strict": true,
66
"allowJs": true,
77
"skipLibCheck": true,
88
"noEmit": true,

examples/example-app-router-next-auth/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"extends": "eslint-config-molindo/tsconfig.json",
32
"compilerOptions": {
43
"target": "es5",
54
"lib": ["dom", "dom.iterable", "esnext"],
5+
"strict": true,
66
"allowJs": true,
77
"skipLibCheck": true,
88
"noEmit": true,

examples/example-app-router-playground/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"extends": "eslint-config-molindo/tsconfig.json",
32
"compilerOptions": {
43
"allowArbitraryExtensions": true,
54
"target": "es5",
65
"lib": ["dom", "dom.iterable", "esnext"],
6+
"strict": true,
77
"allowJs": true,
88
"skipLibCheck": true,
99
"noEmit": true,

examples/example-app-router-single-locale/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"extends": "eslint-config-molindo/tsconfig.json",
32
"compilerOptions": {
43
"target": "es5",
54
"lib": ["dom", "dom.iterable", "esnext"],
5+
"strict": true,
66
"allowJs": true,
77
"skipLibCheck": true,
88
"noEmit": true,

examples/example-app-router-without-i18n-routing/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"extends": "eslint-config-molindo/tsconfig.json",
32
"compilerOptions": {
43
"target": "es5",
54
"lib": ["dom", "dom.iterable", "esnext"],
5+
"strict": true,
66
"allowJs": true,
77
"skipLibCheck": true,
88
"noEmit": true,

examples/example-app-router/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"extends": "eslint-config-molindo/tsconfig.json",
32
"compilerOptions": {
43
"allowArbitraryExtensions": true,
54
"target": "es5",
65
"lib": ["dom", "dom.iterable", "esnext"],
6+
"strict": true,
77
"allowJs": true,
88
"skipLibCheck": true,
99
"noEmit": true,

examples/example-pages-router-advanced/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"extends": "eslint-config-molindo/tsconfig.json",
32
"compilerOptions": {
43
"target": "es5",
54
"lib": ["dom", "dom.iterable", "esnext"],
5+
"strict": true,
66
"baseUrl": "src",
77
"allowJs": true,
88
"skipLibCheck": true,

examples/example-pages-router/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"extends": "eslint-config-molindo/tsconfig.json",
32
"compilerOptions": {
43
"target": "es5",
54
"lib": ["dom", "dom.iterable", "esnext"],
5+
"strict": true,
66
"baseUrl": "src",
77
"allowJs": true,
88
"skipLibCheck": true,

examples/example-remix/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"extends": "eslint-config-molindo/tsconfig.json",
32
"include": ["**/*.ts", "**/*.tsx"],
43
"compilerOptions": {
54
"lib": ["DOM", "DOM.Iterable", "ES2022"],
5+
"strict": true,
66
"types": ["@remix-run/node"],
77
"isolatedModules": true,
88
"esModuleInterop": true,

examples/example-use-intl/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"extends": "eslint-config-molindo/tsconfig.json",
32
"compilerOptions": {
43
"target": "ES2020",
54
"useDefineForClassFields": true,
65
"lib": ["ES2020", "DOM", "DOM.Iterable"],
6+
"strict": true,
77
"module": "ESNext",
88
"skipLibCheck": true,
99
"moduleResolution": "bundler",

0 commit comments

Comments
 (0)