zcash-grant-system/frontend/tsconfig.json

24 lines
611 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"outDir": "dist",
"jsx": "preserve",
"allowJs": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": true,
"baseUrl": "./client",
"lib": ["dom", "es2017"]
},
"include": ["./client", "node_modules/@types", "typings"],
"exclude": ["./client/build", "./client/static"]
}