Skip to content

Commit e07410b

Browse files
committed
ref/ move angularCompilerOptions to tsconfig
1 parent d812e23 commit e07410b

File tree

6 files changed

+34
-34
lines changed

6 files changed

+34
-34
lines changed

app/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-electron",
3-
"version": "10.1.0",
3+
"version": "10.2.1",
44
"main": "main.js",
55
"private": true,
66
"dependencies": {}

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-electron",
3-
"version": "10.2.0",
3+
"version": "10.2.1",
44
"description": "Angular 12 with Electron (Typescript + SASS + Hot Reload)",
55
"homepage": "https://github.com/maximegris/angular-electron",
66
"author": {

src/tsconfig.app.json

+19-29
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,19 @@
1-
{
2-
"extends": "../tsconfig.json",
3-
"compilerOptions": {
4-
"outDir": "../out-tsc/app",
5-
"module": "es2015",
6-
"baseUrl": "",
7-
"types": []
8-
},
9-
"files": [
10-
"main.ts",
11-
"polyfills.ts"
12-
],
13-
"include": [
14-
"**/*.d.ts"
15-
],
16-
"exclude": [
17-
"**/*.spec.ts"
18-
],
19-
"angularCompilerOptions": {
20-
"strictTemplates": true,
21-
"fullTemplateTypeCheck": true,
22-
"annotateForClosureCompiler": true,
23-
"strictInjectionParameters": true,
24-
"skipTemplateCodegen": false,
25-
"preserveWhitespaces": true,
26-
"skipMetadataEmit": false,
27-
"disableTypeScriptVersionCheck": true
28-
}
29-
}
1+
{
2+
"extends": "../tsconfig.json",
3+
"compilerOptions": {
4+
"outDir": "../out-tsc/app",
5+
"module": "es2015",
6+
"baseUrl": "",
7+
"types": []
8+
},
9+
"files": [
10+
"main.ts",
11+
"polyfills.ts"
12+
],
13+
"include": [
14+
"**/*.d.ts"
15+
],
16+
"exclude": [
17+
"**/*.spec.ts"
18+
]
19+
}

tsconfig.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,15 @@
2222
},
2323
"exclude": [
2424
"node_modules"
25-
]
25+
],
26+
"angularCompilerOptions": {
27+
"strictTemplates": true,
28+
"fullTemplateTypeCheck": true,
29+
"annotateForClosureCompiler": true,
30+
"strictInjectionParameters": true,
31+
"skipTemplateCodegen": false,
32+
"preserveWhitespaces": true,
33+
"skipMetadataEmit": false,
34+
"disableTypeScriptVersionCheck": true
35+
}
2636
}

0 commit comments

Comments
 (0)