Skip to content

Commit 1205f82

Browse files
authored
Merge pull request #251 from NativeScript/fatme/skip-dependencies-check
fix: don't check the `.d.ts` files from `node_modules`
2 parents 111bcfb + 6a48097 commit 1205f82

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/schematics",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "Schematics for NativeScript Angular apps.",
55
"scripts": {
66
"build": "tsc -p tsconfig.json",

src/ng-new/application/_files/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"target": "es5",
55
"experimentalDecorators": true,
66
"emitDecoratorMetadata": true,
7+
"skipLibCheck": true,
78
"noEmitHelpers": true,
89
"noEmitOnError": true,
910
"lib": [

src/ng-new/shared/_files/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"moduleResolution": "node",
88
"emitDecoratorMetadata": true,
99
"experimentalDecorators": true,
10+
"skipLibCheck": true,
1011
"target": "es5",
1112
"typeRoots": [
1213
"node_modules/@types"

0 commit comments

Comments
 (0)