-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathtsconfig.json
41 lines (41 loc) · 1.72 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
39
40
41
{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"module": "Node16",
"moduleResolution": "Node16",
"target": "ES2022",
/* Whenever incremental compilation is enabled */
"incremental": true,
/* File containing saved information about incremental compilation */
"tsBuildInfoFile": "cache/tsc.json",
/* Whenever sourcemaps should be made for emitted JavaScript files */
"sourceMap": true,
/* Directory 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", "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,
/* Do not enforce CJS syntax in TypeScript for imports/exports. */
"verbatimModuleSyntax": false,
/* Do not ensure compatibility with other transpilers. */
"isolatedModules": false,
/* Type workarounds for broken modules: */
"paths": {
"marked-*": ["./node_modules/marked-*/src/index.d.ts"]
}
},
"include": ["sources/code/**/*.ts", "sources/code/**/*.mts",]
}