-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (27 loc) · 770 Bytes
/
tsconfig.json
File metadata and controls
30 lines (27 loc) · 770 Bytes
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
{
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
// target settings for node js
"module": "ES2020",
"target": "ES2021",
"lib": ["ES2021"],
// for CommonJS module imports
"allowSyntheticDefaultImports": true,
// other best practice configs
"moduleResolution": "node",
"strict": true,
"noImplicitAny": false, // <-- get rid of this!
"removeComments": false, // <-- do not remove comments (needed for @deprecated notices etc)
"emitDecoratorMetadata": true,
"composite": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"resolveJsonModule": true,
"sourceMap": true,
"isolatedModules": false,
"declaration": true
},
"exclude": ["node_modules", "**/__tests__"],
"include": ["./src"]
}