-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 808 Bytes
/
Copy pathtsconfig.json
File metadata and controls
29 lines (29 loc) · 808 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
{
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "out-tsc", "typings"],
"compilerOptions": {
"target": "es2015",
"module": "es2015",
"lib": ["es2015"],
"moduleResolution": "node",
"outDir": "out-tsc",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"emitDeclarationOnly": false,
"experimentalDecorators": true,
"allowJs": true,
"strictNullChecks": false,
"emitDecoratorMetadata": true,
"strictPropertyInitialization": false,
"sourceMap": true,
"strict": false,
"isolatedModules": false,
"skipLibCheck": true,
"noImplicitAny": false,
"removeComments": true,
"resolveJsonModule": true,
"rootDirs": ["src/"],
"typeRoots": ["node_modules/@types", "typings"],
"types": ["node"]
}
}