-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
38 lines (38 loc) · 1.34 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
37
38
{
"extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"removeComments": true,
"target": "es2021",
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"module": "esnext" /* Specify module code generation: "none", "commonjs", "amd", "system", "umd", "es2015", or "ESNext". */,
"baseUrl": "src",
"outDir": "./lib" /* Redirect output structure to the directory. */,
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
"strict": true /* Enable all strict type-checking options. */,
"noImplicitAny": true /* Raise error on expressions and declarations with an implied "any" type. */,
"typeRoots": ["./node_modules/@types"],
"plugins": [
{
"name": "typescript-eslint-language-service"
}
],
"paths": {
"__tests__/*": ["__tests__/*"]
},
"types": [
"jest",
"node"
]
},
"$schema": "https://json.schemastore.org/tsconfig",
"display": "GitHub Actions (Node 16)",
"exclude": ["node_modules", "**/*.test.ts", "jest.config.ts", "dist/*", "lib/*"]
// "include": ["src/**/*.ts", "src/**/*.tsx"]
}