|
9 | 9 | "@root/": "./src/", |
10 | 10 | "@interfaces/": "./src/interfaces/" |
11 | 11 | }, |
| 12 | + "compilerOptions": { |
| 13 | + "allowUnreachableCode": false, |
| 14 | + "allowUnusedLabels": false, |
| 15 | + "checkJs": false, |
| 16 | + "exactOptionalPropertyTypes": true, |
| 17 | + "jsx": "react", |
| 18 | + "lib": ["deno.ns", "deno.window"], |
| 19 | + "noErrorTruncation": true, |
| 20 | + "noFallthroughCasesInSwitch": true, |
| 21 | + "noImplicitAny": true, |
| 22 | + "noImplicitOverride": true, |
| 23 | + "noImplicitReturns": true, |
| 24 | + "noImplicitThis": true, |
| 25 | + "noPropertyAccessFromIndexSignature": true, |
| 26 | + "noUncheckedIndexedAccess": true, |
| 27 | + "noUnusedLocals": true, |
| 28 | + "noUnusedParameters": true, |
| 29 | + "strict": true, |
| 30 | + "strictBindCallApply": true, |
| 31 | + "strictFunctionTypes": true, |
| 32 | + "strictNullChecks": true, |
| 33 | + "strictPropertyInitialization": true, |
| 34 | + "useUnknownInCatchVariables": true |
| 35 | + }, |
12 | 36 | "publish": { |
13 | 37 | "exclude": ["dist/", "node_modules/", "package*.json", "tsconfig.json", "eslint.config.js", "build.config.ts", ".github/", ".prettierignore", ".prettierrc"] |
14 | 38 | } |
|
0 commit comments