-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.main.json
31 lines (31 loc) · 1.18 KB
/
tsconfig.main.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
{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"composite": true,
"module": "Node16",
"moduleResolution": "Node16",
"target": "ES2022",
/* Whenever incremental compilation is enabled */
"incremental": true,
/* File containing saved information about incremental compilation */
"tsBuildInfoFile": "cache/tsc.json",
/* Directory in which are placed all emitted files */
"outDir": "dist",
/* Whenever comments are emitted to files */
"removeComments": true,
/* Limit module resolution to project's path only */
"typeRoots": ["./node_modules/@types"],
/* Allow for JSON imports */
"resolveJsonModule": true,
/* Enforce consistent casing for imported module names */
"forceConsistentCasingInFileNames": true,
/* Use *nix end-of-line character for emitted files */
"newLine": "lf",
"noUnusedLocals": false,
/* Do not emit anything when there's an error in source files */
"noEmitOnError": true,
"declarationDir": "cache",
"rootDir": "src"
},
"files": [ "src/main.ts" ]
}