forked from statechannels/bytecode-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
14 lines (14 loc) · 704 Bytes
/
tsconfig.json
File metadata and controls
14 lines (14 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
"allowSyntheticDefaultImports": true,
"lib": ["ES2019"],
"target": "es2019",
"module": "commonjs",
"strict": true /* Enable all strict type-checking options. */,
"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"skipLibCheck": true /* Skip type checking of declaration files. */,
"noImplicitReturns": true
}
}