zcash-grant-system/frontend/tsconfig.json

24 lines
611 B
JSON
Raw Normal View History

2018-09-10 09:55:26 -07:00
{
"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"]
2018-09-10 09:55:26 -07:00
},
2018-09-14 07:53:41 -07:00
"include": ["./client", "node_modules/@types", "typings"],
"exclude": ["./client/build", "./client/static"]
2018-09-10 09:55:26 -07:00
}