tangled
alpha
login
or
join now
tylur.dev
/
prototypey
prototypey.org - atproto lexicon typescript toolkit - mirror https://github.com/tylersayshi/prototypey
1
fork
atom
overview
issues
pulls
pipelines
tsconfig cleanup
Tyler
3 months ago
9c278105
7e744630
+7
-15
2 changed files
expand all
collapse all
unified
split
packages
site
tsconfig.json
tsconfig.json
+2
-12
packages/site/tsconfig.json
···
1
{
0
2
"compilerOptions": {
3
"target": "ES2020",
4
-
"useDefineForClassFields": true,
5
"lib": ["ES2020", "DOM", "DOM.Iterable"],
6
"module": "ESNext",
7
-
"skipLibCheck": true,
8
"moduleResolution": "bundler",
9
-
"allowImportingTsExtensions": true,
10
-
"isolatedModules": true,
11
-
"moduleDetection": "force",
12
-
"noEmit": true,
13
-
"jsx": "react-jsx",
14
-
"strict": true,
15
-
"noUnusedLocals": true,
16
-
"noUnusedParameters": true,
17
-
"noFallthroughCasesInSwitch": true,
18
-
"noUncheckedSideEffectImports": true
19
},
20
"include": ["src"]
21
}
···
1
{
2
+
"extends": "../../tsconfig.json",
3
"compilerOptions": {
4
"target": "ES2020",
0
5
"lib": ["ES2020", "DOM", "DOM.Iterable"],
6
"module": "ESNext",
0
7
"moduleResolution": "bundler",
8
+
"jsx": "react-jsx"
0
0
0
0
0
0
0
0
0
9
},
10
"include": ["src"]
11
}
+5
-3
tsconfig.json
···
5
"esModuleInterop": true,
6
"module": "NodeNext",
7
"moduleResolution": "NodeNext",
0
8
"noEmit": true,
9
"resolveJsonModule": true,
10
"noErrorTruncation": true,
11
"skipLibCheck": true,
12
"strict": true,
13
"target": "ES2022",
14
-
"allowImportingTsExtensions": true
15
-
},
16
-
"include": ["src", "tests"]
0
17
}
···
5
"esModuleInterop": true,
6
"module": "NodeNext",
7
"moduleResolution": "NodeNext",
8
+
"isolatedModules": true,
9
"noEmit": true,
10
"resolveJsonModule": true,
11
"noErrorTruncation": true,
12
"skipLibCheck": true,
13
"strict": true,
14
"target": "ES2022",
15
+
"allowImportingTsExtensions": true,
16
+
"noFallthroughCasesInSwitch": true,
17
+
"noUncheckedSideEffectImports": true
18
+
}
19
}