generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
36 lines (35 loc) · 1 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
// Type checking
"strict": true,
"noUncheckedIndexedAccess": true,
"alwaysStrict": false, // Don't emit "use strict" to avoid conflicts with "use client"
// Modules
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
// Language & Environment
"target": "ESNext",
"lib": ["ESNext"],
// Emit
"noEmit": true,
"declaration": true,
"declarationMap": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"downlevelIteration": true,
// Interop
"allowJs": true,
"isolatedModules": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
// Misc
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": ["**/*.ts", "__tests__/processArguments.test.cts", "__tests__/main.test.ts.disabled"],
"exclude": ["node_modules"]
}