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
1
{
2
2
+
"extends": "../../tsconfig.json",
2
3
"compilerOptions": {
3
4
"target": "ES2020",
4
4
-
"useDefineForClassFields": true,
5
5
"lib": ["ES2020", "DOM", "DOM.Iterable"],
6
6
"module": "ESNext",
7
7
-
"skipLibCheck": true,
8
7
"moduleResolution": "bundler",
9
9
-
"allowImportingTsExtensions": true,
10
10
-
"isolatedModules": true,
11
11
-
"moduleDetection": "force",
12
12
-
"noEmit": true,
13
13
-
"jsx": "react-jsx",
14
14
-
"strict": true,
15
15
-
"noUnusedLocals": true,
16
16
-
"noUnusedParameters": true,
17
17
-
"noFallthroughCasesInSwitch": true,
18
18
-
"noUncheckedSideEffectImports": true
8
8
+
"jsx": "react-jsx"
19
9
},
20
10
"include": ["src"]
21
11
}
+5
-3
tsconfig.json
···
5
5
"esModuleInterop": true,
6
6
"module": "NodeNext",
7
7
"moduleResolution": "NodeNext",
8
8
+
"isolatedModules": true,
8
9
"noEmit": true,
9
10
"resolveJsonModule": true,
10
11
"noErrorTruncation": true,
11
12
"skipLibCheck": true,
12
13
"strict": true,
13
14
"target": "ES2022",
14
14
-
"allowImportingTsExtensions": true
15
15
-
},
16
16
-
"include": ["src", "tests"]
15
15
+
"allowImportingTsExtensions": true,
16
16
+
"noFallthroughCasesInSwitch": true,
17
17
+
"noUncheckedSideEffectImports": true
18
18
+
}
17
19
}