-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
tsconfig.json
37 lines (37 loc) · 838 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
{
"$schema": "http://json.schemastore.org/tsconfig",
"include": [
"./src/**/*"
],
"exclude": [
"./src/**/*.d.ts",
"./src/index-esm.ts",
"./dataforged-tools"
],
"compilerOptions": {
"lib": [
"es2020",
"es2021",
"esnext"
],
"target": "ESnext",
"strictNullChecks": true,
"baseUrl": ".",
"preserveConstEnums": true,
"outDir": "./dist",
"rootDir": "./src",
"removeComments": false,
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"allowUnreachableCode": false,
"declaration": false, // uses declarations generated by dataforged-tools instead
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"skipLibCheck": true,
"strict": true,
"typeRoots": [
"types",
"node_modules/@types"
]
}
}