-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
30 lines (30 loc) · 867 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
{
"compilerOptions": {
"types": ["node"],
"target": "ES2016",
"module": "CommonJS",
"allowJs": true,
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"noEmit": false,
"noEmitOnError": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"removeComments": false,
"resolveJsonModule": true,
"baseUrl": ".",
"outDir": "dist",
"rootDir": ".",
"paths": {
"~/*": ["src/*"]
}
},
"include": ["src/**/*.ts", "package.json", "main.d.ts"],
"exclude": ["node_modules", "**/node_modules/*"]
}