mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 13:47:12 +00:00
31 lines
741 B
JSON
31 lines
741 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"declarationDir": "build/types",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"newLine": "LF",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"outDir": "build",
|
|
"pretty": true,
|
|
"removeComments": false,
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "es6",
|
|
"lib": ["es6"],
|
|
"typeRoots": [
|
|
"./custom_types",
|
|
"./node_modules/@types"
|
|
]
|
|
},
|
|
"include": ["src/**/*"]
|
|
} |