-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
tsconfig.json
35 lines (35 loc) · 968 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
{
"extends": [
"@tsconfig/strictest/tsconfig",
"@tsconfig/node18/tsconfig",
],
"compilerOptions": {
// ESM
"module": "node16",
"moduleResolution": "node16",
// Disable extra strict rules
"exactOptionalPropertyTypes": false,
"noPropertyAccessFromIndexSignature": false,
// Project requirements
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"useUnknownInCatchVariables": false,
// Types
"typeRoots": [
"node_modules/@types",
], /* List of folders to include type definitions from. */
// Output
"outDir": "./dist", /* Redirect output structure to the directory. */
"rootDir": ".",
"removeComments": true, /* Do not emit comments to output. */
"inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
},
"include": [
"**/*.ts",
".*.cjs",
],
"exclude": [
"node_modules",
"dist"
]
}