forked from SpacingBat3/WebCord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 1.33 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
{
"extends": "@tsconfig/node16-strictest/tsconfig.json",
"compilerOptions": {
"moduleResolution": "Node",
"target": "ES2022",
/* Whenever incremental compilation is enabled */
"incremental": true,
/* File containing saved information about incremental compilation */
"tsBuildInfoFile": "app/.build/info.json",
/* Whenever sourcemaps should be made for emitted JavaScript files */
"sourceMap": true,
/* Directrory in which are placed all emitted files */
"outDir": "app",
/* Whenever comments are emitted to files */
"removeComments": true,
/* Replace a set of core libraries. */
"lib": ["ES2022", "DOM.Iterable"],
/* Limit module resolution to project's path only */
"typeRoots": ["./node_modules/@types"],
/* Use `tslib` for import helpers. */
"importHelpers": true,
/* 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",
/* Do not emit anything when there's an error in source files */
"noEmitOnError": true
},
"include": [
"sources/code/**/*.ts"
]
}