Checkbox 1
- Checkbox 2
+ Checkbox 2
diff --git a/src/tsconfig.app.json b/src/tsconfig.app.json
index 11f42cdd..ba219819 100644
--- a/src/tsconfig.app.json
+++ b/src/tsconfig.app.json
@@ -1,17 +1,14 @@
{
- "extends": "../tsconfig.base.json",
+ "extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"baseUrl": "./"
},
- "exclude": [
- "test.ts",
- "**/*.spec.ts",
- "../node_modules/@nebular/**/*.spec.ts"
+ "files": [
+ "main.ts",
+ "polyfills.ts"
],
"include": [
- "../src/*.ts",
- "../src/**/*.ts",
- "../node_modules/@nebular/**/*.ts"
+ "**/*.d.ts"
]
}
diff --git a/src/tsconfig.spec.json b/src/tsconfig.spec.json
index b019e30f..c89454be 100644
--- a/src/tsconfig.spec.json
+++ b/src/tsconfig.spec.json
@@ -1,5 +1,5 @@
{
- "extends": "../tsconfig.base.json",
+ "extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"baseUrl": "./",
diff --git a/tsconfig.base.json b/tsconfig.base.json
deleted file mode 100644
index a58ef458..00000000
--- a/tsconfig.base.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "compileOnSave": false,
- "compilerOptions": {
- "importHelpers": true,
- "module": "es2020",
- "outDir": "./dist/out-tsc",
- "sourceMap": true,
- "declaration": false,
- "moduleResolution": "node",
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "target": "es2015",
- "typeRoots": [
- "node_modules/@types"
- ],
- "lib": [
- "es2017",
- "dom"
- ],
- "plugins": [
- { "name": "tslint-language-service"}
- ]
- }
-}
diff --git a/tsconfig.json b/tsconfig.json
index 26abde9a..a58ef458 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,17 +1,24 @@
-/*
- This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience.
- It is not intended to be used to perform a compilation.
-
- To learn more about this file see: https://angular.io/config/solution-tsconfig.
-*/
{
- "files": [],
- "references": [
- {
- "path": "./src/tsconfig.app.json"
- },
- {
- "path": "./src/tsconfig.spec.json"
- }
- ]
-}
\ No newline at end of file
+ "compileOnSave": false,
+ "compilerOptions": {
+ "importHelpers": true,
+ "module": "es2020",
+ "outDir": "./dist/out-tsc",
+ "sourceMap": true,
+ "declaration": false,
+ "moduleResolution": "node",
+ "emitDecoratorMetadata": true,
+ "experimentalDecorators": true,
+ "target": "es2015",
+ "typeRoots": [
+ "node_modules/@types"
+ ],
+ "lib": [
+ "es2017",
+ "dom"
+ ],
+ "plugins": [
+ { "name": "tslint-language-service"}
+ ]
+ }
+}