-
Notifications
You must be signed in to change notification settings - Fork 474
/
tsconfig.json
34 lines (34 loc) · 1.03 KB
/
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
31
32
33
34
{
// Configuration reference: https://www.typescriptlang.org/tsconfig
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"resolveJsonModule": true,
// This is needed for backwards-compatibility, to keep imports of the form `wrapper = require('solc/wrapper)`
// working like they did before the TypeScript migration.
// TODO: Drop it in the next breaking release.
"esModuleInterop": true,
"outDir": "./dist",
"forceConsistentCasingInFileNames": true,
// Allow JS must be included to ensure that the built binary is included
// in the output. This could be copied directly in the future if required.
"allowJs": true,
// TODO:
// In order to gracefully move our project to TypeScript without having
// TS immediately yell at you, we'll disable strict mode for now.
"strict": false,
"noImplicitAny": false
},
"include": [
"**/*.js",
"**/*.ts",
"**/*.json"
],
"exclude": [
"coverage",
"dist"
],
"ts-node": {
"transpileOnly": true
}
}