-
-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (26 loc) · 655 Bytes
/
tsconfig.json
File metadata and controls
29 lines (26 loc) · 655 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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "Node",
"types": ["node"],
"rootDir": "src",
"outDir": "dist",
"allowJs": true, // <-- keep .js files
"checkJs": false, // you can flip true later to typecheck .js
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"noEmitOnError": true
},
"include": ["src/**/*"],
"exclude": [
"src/models/index.js",
"src/config/secrets.js",
"src/crons/cron.js",
"src/crons/orders/orderCron.js",
"src/scripts/scripts.js"
]
}