c40d71e1ed
* Feat/804: Routing and basic page setup * Feat/804: Type definition for proposals - awaiting asset docs/changes * Feat/804: New proposals lib * Feat/804: Propose form and page * Feat/804: Removing dud copied unit tests for now * Feat/804: Added types for new asset proposal * feat: handle new error types returned from wallet for proposals * chore: rename lib to governance * feat: move usage of hook into form component * feat: some adjustments and test coverage * chore: tidy up, remove tailwind config Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
27 lines
594 B
JSON
27 lines
594 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../dist/out-tsc",
|
|
"types": ["node"]
|
|
},
|
|
"files": [
|
|
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts",
|
|
"../../node_modules/@nrwl/react/typings/image.d.ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.spec.ts",
|
|
"**/*.test.ts",
|
|
"**/*.spec.tsx",
|
|
"**/*.test.tsx",
|
|
"**/*.spec.js",
|
|
"**/*.test.js",
|
|
"**/*.spec.jsx",
|
|
"**/*.test.jsx",
|
|
"**/*.stories.ts",
|
|
"**/*.stories.js",
|
|
"**/*.stories.jsx",
|
|
"**/*.stories.tsx"
|
|
],
|
|
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"]
|
|
}
|