Skip to content

Commit 7aee0f9

Browse files
authored
Merge pull request #8 from SilentEchoUK/fix-#6
resolve issue #6
2 parents 7f5cb46 + 67afead commit 7aee0f9

File tree

4 files changed

+56
-50
lines changed

4 files changed

+56
-50
lines changed

src/electron/tsconfig.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"compileOnSave": true,
3+
"compilerOptions": {
4+
"outDir": "../../build",
5+
"target": "ES2015",
6+
"module": "commonjs",
7+
"sourceMap": true,
8+
"stripInternal": true,
9+
"lib": ["es2015", "esnext", "dom"],
10+
"moduleResolution": "node",
11+
"noImplicitAny": true,
12+
"strictNullChecks": true,
13+
"strictFunctionTypes": true,
14+
"noImplicitThis": true,
15+
"noUnusedLocals": true,
16+
"noUnusedParameters": true,
17+
"noImplicitReturns": true,
18+
"noFallthroughCasesInSwitch": true,
19+
"noEmitOnError": true,
20+
"allowSyntheticDefaultImports": true,
21+
"emitDecoratorMetadata": true,
22+
"experimentalDecorators": true,
23+
"esModuleInterop": true,
24+
"isolatedModules": true
25+
},
26+
"include": ["."],
27+
"exclude": ["node_modules"]
28+
}

src/frontend/tsconfig.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"extends": "@tsconfig/svelte/tsconfig.json",
3+
"compilerOptions": {
4+
"types": ["node", "svelte"],
5+
"sourceMap": true,
6+
"target": "ESNext",
7+
"stripInternal": true,
8+
"strict": true,
9+
"noImplicitAny": true,
10+
"strictNullChecks": true,
11+
"strictFunctionTypes": true,
12+
"noImplicitThis": true,
13+
"noUnusedLocals": true,
14+
"noUnusedParameters": true,
15+
"noImplicitReturns": true,
16+
"noFallthroughCasesInSwitch": true,
17+
"noEmitOnError": true,
18+
"allowSyntheticDefaultImports": true,
19+
"emitDecoratorMetadata": true,
20+
"experimentalDecorators": true,
21+
"esModuleInterop": true,
22+
"isolatedModules": true
23+
},
24+
"include": ["."],
25+
"exclude": ["node_modules/*", "__sapper__/*", "public/*"]
26+
}

tsconfig.electron.json

+1-26
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,3 @@
11
{
2-
"compileOnSave": true,
3-
"compilerOptions": {
4-
"outDir": "./build",
5-
"target": "ES2015",
6-
"module": "commonjs",
7-
"sourceMap": true,
8-
"stripInternal": true,
9-
"lib": ["es2015", "esnext", "dom"],
10-
"moduleResolution": "node",
11-
"noImplicitAny": true,
12-
"strictNullChecks": true,
13-
"strictFunctionTypes": true,
14-
"noImplicitThis": true,
15-
"noUnusedLocals": true,
16-
"noUnusedParameters": true,
17-
"noImplicitReturns": true,
18-
"noFallthroughCasesInSwitch": true,
19-
"noEmitOnError": true,
20-
"allowSyntheticDefaultImports": true,
21-
"emitDecoratorMetadata": true,
22-
"experimentalDecorators": true,
23-
"esModuleInterop": true,
24-
"isolatedModules": true
25-
},
26-
"include": ["src/electron/**/*"],
27-
"exclude": ["node_modules"]
2+
"extends": "./src/electron/tsconfig.json"
283
}

tsconfig.svelte.json

+1-24
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,3 @@
11
{
2-
"extends": "@tsconfig/svelte/tsconfig.json",
3-
"compilerOptions": {
4-
"types": ["node", "svelte"],
5-
"sourceMap": true,
6-
"target": "ESNext",
7-
"stripInternal": true,
8-
"strict": true,
9-
"noImplicitAny": true,
10-
"strictNullChecks": true,
11-
"strictFunctionTypes": true,
12-
"noImplicitThis": true,
13-
"noUnusedLocals": true,
14-
"noUnusedParameters": true,
15-
"noImplicitReturns": true,
16-
"noFallthroughCasesInSwitch": true,
17-
"noEmitOnError": true,
18-
"allowSyntheticDefaultImports": true,
19-
"emitDecoratorMetadata": true,
20-
"experimentalDecorators": true,
21-
"esModuleInterop": true,
22-
"isolatedModules": true
23-
},
24-
"include": ["src/frontend/**/*"],
25-
"exclude": ["node_modules/*", "__sapper__/*", "public/*"]
2+
"extends": "./src/frontend/tsconfig.json"
263
}

0 commit comments

Comments
 (0)