aboutsummaryrefslogtreecommitdiffstats
path: root/packages/theme
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-01-03 22:33:37 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-01-03 22:33:37 +0100
commitcc040f8ff48f2d1a6d6dc7a6cf43bc86f21bd766 (patch)
tree4643d7882caadea507636eff96521775244d1991 /packages/theme
parentReset package version (diff)
downloadferdium-app-cc040f8ff48f2d1a6d6dc7a6cf43bc86f21bd766.tar.gz
ferdium-app-cc040f8ff48f2d1a6d6dc7a6cf43bc86f21bd766.tar.zst
ferdium-app-cc040f8ff48f2d1a6d6dc7a6cf43bc86f21bd766.zip
restructure packages
Diffstat (limited to 'packages/theme')
-rw-r--r--packages/theme/package.json7
-rw-r--r--packages/theme/tsconfig.json65
2 files changed, 6 insertions, 66 deletions
diff --git a/packages/theme/package.json b/packages/theme/package.json
index 2a359b071..0bc0423bf 100644
--- a/packages/theme/package.json
+++ b/packages/theme/package.json
@@ -1,6 +1,6 @@
1{ 1{
2 "name": "@meetfranz/theme", 2 "name": "@meetfranz/theme",
3 "version": "0.0.0", 3 "version": "1.0.0",
4 "description": "Theme configuration for Franz", 4 "description": "Theme configuration for Franz",
5 "author": "Stefan Malzner <stefan@adlk.io>", 5 "author": "Stefan Malzner <stefan@adlk.io>",
6 "homepage": "https://github.com/meetfranz/franz", 6 "homepage": "https://github.com/meetfranz/franz",
@@ -28,8 +28,5 @@
28 "dependencies": { 28 "dependencies": {
29 "color": "^3.1.0" 29 "color": "^3.1.0"
30 }, 30 },
31 "devDependencies": { 31 "gitHead": "e9a48f96f8659dcd6ac07a8445f60f27d6ae698a"
32 "@types/color": "^3.0.0",
33 "@types/color-convert": "^1.9.0"
34 }
35} 32}
diff --git a/packages/theme/tsconfig.json b/packages/theme/tsconfig.json
index de5e11c56..d80ee9ee7 100644
--- a/packages/theme/tsconfig.json
+++ b/packages/theme/tsconfig.json
@@ -1,64 +1,7 @@
1{ 1{
2 "extends": "../../tsconfig.settings.json",
2 "compilerOptions": { 3 "compilerOptions": {
3 /* Basic Options */ 4 "outDir": "lib",
4 "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ 5 "rootDir": "src"
5 "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ 6 },
6 "lib": [
7 "es2015",
8 "es2017",
9 "dom"
10 ], /* Specify library files to be included in the compilation. */
11 // "allowJs": true, /* Allow javascript files to be compiled. */
12 // "checkJs": true, /* Report errors in .js files. */
13 // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
14 "declaration": true, /* Generates corresponding '.d.ts' file. */
15 // "declarationDir": "./", /* Output directory for generated declaration files. */
16 // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
17 // "sourceMap": true, /* Generates corresponding '.map' file. */
18 // "outFile": "./", /* Concatenate and emit output to single file. */
19 "outDir": "./lib", /* Redirect output structure to the directory. */
20 // "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
21 // "composite": true, /* Enable project compilation */
22 // "removeComments": true, /* Do not emit comments to output. */
23 // "noEmit": true, /* Do not emit outputs. */
24 // "importHelpers": true, /* Import emit helpers from 'tslib'. */
25 // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
26 // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
27
28 /* Strict Type-Checking Options */
29 "strict": true, /* Enable all strict type-checking options. */
30 // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
31 // "strictNullChecks": true, /* Enable strict null checks. */
32 // "strictFunctionTypes": true, /* Enable strict checking of function types. */
33 // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
34 // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
35 // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
36
37 /* Additional Checks */
38 // "noUnusedLocals": true, /* Report errors on unused locals. */
39 // "noUnusedParameters": true, /* Report errors on unused parameters. */
40 // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
41 // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
42
43 /* Module Resolution Options */
44 // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
45 // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
46 // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
47 // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
48 // "typeRoots": [], /* List of folders to include type definitions from. */
49 // "types": [], /* Type declaration files to be included in compilation. */
50 // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
51 "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
52 // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
53
54 /* Source Map Options */
55 // "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
56 // "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */
57 // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
58 // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
59
60 /* Experimental Options */
61 // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
62 // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
63 }
64} 7}