forked from vrhpires/codacy-eslint9
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
41 lines (41 loc) · 974 Bytes
/
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
39
40
41
{
"compilerOptions": {
"baseUrl": "./",
"composite": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"lib": ["ES2022"],
"module": "Node16",
"moduleResolution": "Node16",
"noErrorTruncation": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"target": "ES2022",
"rootDir": ".",
"typeRoots" : ["node_modules/@types"],
"allowImportingTsExtensions": true,
"noEmit": true,
"types": ["node"]
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
"transpileOnly": true,
"require": [
"tsconfig-paths/register"
]
},
"include": [
"eslint.config.mjs",
"lib/**/*.ts",
"workspaces/**/src/*.ts"
]
}