pineafan | 17aba6d | 2022-05-19 20:27:22 +0100 | [diff] [blame] | 1 | { |
TheCodedProf | 4a44d90 | 2023-04-21 22:43:17 -0400 | [diff] [blame] | 2 | "$schema": "https://json.schemastore.org/tsconfig", |
| 3 | "display": "Node 18 + ESM + Strictest", |
pineafan | 17aba6d | 2022-05-19 20:27:22 +0100 | [diff] [blame] | 4 | "compilerOptions": { |
TheCodedProf | 122b062 | 2023-04-21 22:45:53 -0400 | [diff] [blame] | 5 | "lib": ["es2022"], |
TheCodedProf | 4a44d90 | 2023-04-21 22:43:17 -0400 | [diff] [blame] | 6 | "strict": true, |
| 7 | "exactOptionalPropertyTypes": true, |
| 8 | "noFallthroughCasesInSwitch": true, |
| 9 | "noImplicitOverride": true, |
| 10 | "noPropertyAccessFromIndexSignature": true, |
| 11 | "noUncheckedIndexedAccess": true, |
| 12 | "noUnusedLocals": true, |
| 13 | "noUnusedParameters": true, |
| 14 | "forceConsistentCasingInFileNames": true, |
| 15 | "allowUnusedLabels": false, |
| 16 | "allowUnreachableCode": false, |
PineaFan | 64486c4 | 2022-12-28 09:21:04 +0000 | [diff] [blame] | 17 | "module": "NodeNext", |
pineafan | 17aba6d | 2022-05-19 20:27:22 +0100 | [diff] [blame] | 18 | "target": "es2020", |
| 19 | "sourceMap": true, |
| 20 | "esModuleInterop": true, |
| 21 | "outDir": "./dist", |
| 22 | "declaration": true, |
| 23 | "declarationMap": true, |
| 24 | "resolveJsonModule": true, |
PineaFan | 64486c4 | 2022-12-28 09:21:04 +0000 | [diff] [blame] | 25 | "moduleResolution": "NodeNext", |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 26 | "skipLibCheck": true, |
TheCodedProf | 4a44d90 | 2023-04-21 22:43:17 -0400 | [diff] [blame] | 27 | "noImplicitReturns": false, |
| 28 | "checkJs": true |
pineafan | 17aba6d | 2022-05-19 20:27:22 +0100 | [diff] [blame] | 29 | }, |
pineafan | a2e39c7 | 2023-02-21 18:37:32 +0000 | [diff] [blame] | 30 | "include": ["src/**/*", "src/*", "src/config/main.d.ts", "src/config/main.ts"], |
Skyler Grey | 7a966df | 2023-03-09 12:53:57 +0000 | [diff] [blame] | 31 | "exclude": ["src/Unfinished/**/*", "src/reflex/nsfwjs/**/*"] |
Skyler Grey | aa50824 | 2022-08-03 21:42:12 +0100 | [diff] [blame] | 32 | } |