-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 858 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 858 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
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"lib": ["es6", "dom"],
"sourceMap": true,
"resolveJsonModule": true,
"rootDir": ".",
"strict": true,
/* enable all strict type-checking options */
"esModuleInterop": true,
"noUnusedLocals": false,
"noImplicitThis": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noUnusedParameters": false,
"allowJs": true,
"checkJs": false,
"skipLibCheck": true,
"typeRoots": ["./node_modules/@types", "./node_modules/@machinomy", "./src/debugger/types"]
},
"include": ["src/**/*.js", "src/**/*.ts", "src/**/*.json", "test/**/*.js", "test/**/*.ts", "test/**/*.json"],
"exclude": ["node_modules", ".vscode-test"]
}