-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 851 Bytes
/
Copy pathtsconfig.json
File metadata and controls
22 lines (22 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"alwaysStrict": true,
"target": "es2017",
"moduleResolution": "node",
"declaration": true,
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
"types": ["node"],
"lib": ["es2020", "dom"],
"module": "es2020",
"outDir": "./dist",
"rootDir": "./src/",
"sourceMap": true,
"strict": true /* Enable all strict type-checking options. */
},
"typingOptions": {
"enableAutoDiscovery": true
},
"include": ["./src/**/*.ts"]
}