|
1 | 1 | { |
2 | | - "$schema": "https://json.schemastore.org/tsconfig", |
3 | | - "formatCodeOptions": { |
4 | | - "tabSize": 2, |
5 | | - "indentSize": 2 |
6 | | - }, |
7 | | - "compilerOptions": { |
8 | | - "allowSyntheticDefaultImports": false, |
| 2 | + "$schema": "https://json.schemastore.org/tsconfig", |
| 3 | + "formatCodeOptions": { |
| 4 | + "tabSize": 2, |
| 5 | + "indentSize": 2 |
| 6 | + }, |
| 7 | + "compilerOptions": { |
| 8 | + "allowSyntheticDefaultImports": false, |
9 | 9 | "allowUnreachableCode": false, |
10 | | - "esModuleInterop": false, |
11 | | - "tsBuildInfoFile": "./", |
| 10 | + "esModuleInterop": false, |
| 11 | + "tsBuildInfoFile": "./", |
12 | 12 | "forceConsistentCasingInFileNames": true, |
13 | 13 | "strictPropertyInitialization": true, |
14 | 14 | "noFallthroughCasesInSwitch": true, |
15 | 15 | "useUnknownInCatchVariables": true, |
16 | | - "noUncheckedIndexedAccess": true, |
| 16 | + "noUncheckedIndexedAccess": true, |
17 | 17 | "experimentalDecorators": true, |
18 | 18 | "emitDecoratorMetadata": true, |
19 | 19 | "preserveValueImports": true, |
20 | 20 | "strictBindCallApply": true, |
21 | | - "strictFunctionTypes": true, |
22 | | - "noUnusedParameters": true, |
23 | | - "noImplicitReturns": true, |
| 21 | + "strictFunctionTypes": true, |
| 22 | + "noUnusedParameters": true, |
| 23 | + "noImplicitReturns": true, |
24 | 24 | "strictNullChecks": true, |
25 | | - "isolatedModules": true, |
26 | | - "removeComments": true, |
27 | | - "incremental": true, |
28 | | - "declaration": true, |
29 | | - "sourceMap": false, |
| 25 | + "isolatedModules": true, |
| 26 | + "removeComments": true, |
| 27 | + "incremental": true, |
| 28 | + "declaration": true, |
| 29 | + "sourceMap": false, |
30 | 30 | "moduleResolution": "node16", |
31 | | - "moduleDetection": "force", |
32 | | - "module": "node16", |
33 | | - "target": "ESNext", |
34 | | - "rootDir": "./src", |
35 | | - "outDir": "./dist", |
36 | | - "types": [], |
37 | | - "plugins": [ |
38 | | - { |
39 | | - "name": "typescript-eslint-language-service" |
40 | | - } |
41 | | - ] |
42 | | - }, |
43 | | - "include": [ |
44 | | - "src/**/*.ts" |
45 | | - ], |
46 | | - "exclude": [ |
47 | | - "**/node_modules", |
48 | | - "**/.*/", |
49 | | - "src/**/*.test.ts" |
50 | | - ] |
| 31 | + "moduleDetection": "force", |
| 32 | + "module": "node16", |
| 33 | + "target": "ESNext", |
| 34 | + "rootDir": "./src", |
| 35 | + "outDir": "./dist", |
| 36 | + "types": [ |
| 37 | + "@types/node" |
| 38 | + ], |
| 39 | + "plugins": [ |
| 40 | + { |
| 41 | + "name": "typescript-eslint-language-service" |
| 42 | + } |
| 43 | + ] |
| 44 | + }, |
| 45 | + "include": [ |
| 46 | + "bigint-env.d.ts", |
| 47 | + "src/**/*.ts" |
| 48 | + ], |
| 49 | + "exclude": [ |
| 50 | + "**/node_modules", |
| 51 | + "**/.*/", |
| 52 | + "src/**/*.test.ts" |
| 53 | + ] |
51 | 54 | } |
0 commit comments