Mv client files into separate package
This commit is contained in:
parent
58654749c8
commit
a46a2d28bf
4
packages/client/package.json
Normal file
4
packages/client/package.json
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"name": "@rondo/client",
|
||||
"private": true
|
||||
}
|
||||
19
packages/client/tsconfig.json
Normal file
19
packages/client/tsconfig.json
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"lib": ["es2015", "dom"],
|
||||
"target": "es3",
|
||||
"moduleResolution": "node",
|
||||
"jsx": "react",
|
||||
"noImplicitAny": true,
|
||||
"strict": true,
|
||||
"skipLibCheck": true,
|
||||
"noUnusedLocals": true,
|
||||
"esModuleInterop": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"plugins": [{
|
||||
"name": "typescript-tslint-plugin",
|
||||
"suppressWhileTypeErrorsPresent": true
|
||||
}]
|
||||
}
|
||||
}
|
||||
43
packages/client/tslint.json
Normal file
43
packages/client/tslint.json
Normal file
@ -0,0 +1,43 @@
|
||||
{
|
||||
"defaultSeverity": "error",
|
||||
"extends": [
|
||||
"tslint:recommended"
|
||||
],
|
||||
"jsRules": {},
|
||||
"rules": {
|
||||
"quotemark": [true, "single", "jsx-single"],
|
||||
"member-access": false,
|
||||
"no-bitwise": false,
|
||||
"semicolon": [true, "never"],
|
||||
"object-literal-sort-keys": false,
|
||||
"ordered-imports": false,
|
||||
"max-line-length": [true, 80],
|
||||
"arrow-parens": false,
|
||||
"variable-name": [
|
||||
true,
|
||||
"ban-keywords",
|
||||
"check-format",
|
||||
"allow-leading-underscore",
|
||||
"allow-pascal-case"
|
||||
],
|
||||
"member-ordering": false,
|
||||
"max-classes-per-file": false,
|
||||
"no-empty-interface": false,
|
||||
"trailing-comma": [true, {
|
||||
"multiline": {
|
||||
"objects": "always",
|
||||
"arrays": "always",
|
||||
"functions": "always",
|
||||
"typeLiterals": "ignore"
|
||||
},
|
||||
"singleline": "never",
|
||||
"esSpecCompliant": true
|
||||
}]
|
||||
},
|
||||
"linterOptions": {
|
||||
"exclude": [
|
||||
"src/server/migrations/*.ts"
|
||||
]
|
||||
},
|
||||
"rulesDirectory": []
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user