Skip to content

Commit 06d5bfb

Browse files
authored
fix(tsconfig): fmt
1 parent 15c391f commit 06d5bfb

File tree

1 file changed

+41
-38
lines changed

1 file changed

+41
-38
lines changed

tsconfig.json

Lines changed: 41 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,54 @@
11
{
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,
99
"allowUnreachableCode": false,
10-
"esModuleInterop": false,
11-
"tsBuildInfoFile": "./",
10+
"esModuleInterop": false,
11+
"tsBuildInfoFile": "./",
1212
"forceConsistentCasingInFileNames": true,
1313
"strictPropertyInitialization": true,
1414
"noFallthroughCasesInSwitch": true,
1515
"useUnknownInCatchVariables": true,
16-
"noUncheckedIndexedAccess": true,
16+
"noUncheckedIndexedAccess": true,
1717
"experimentalDecorators": true,
1818
"emitDecoratorMetadata": true,
1919
"preserveValueImports": true,
2020
"strictBindCallApply": true,
21-
"strictFunctionTypes": true,
22-
"noUnusedParameters": true,
23-
"noImplicitReturns": true,
21+
"strictFunctionTypes": true,
22+
"noUnusedParameters": true,
23+
"noImplicitReturns": true,
2424
"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,
3030
"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+
]
5154
}

0 commit comments

Comments
 (0)