Skip to content

Commit a03d2f2

Browse files
committed
chore(snippets-tsconfig): move into folder
1 parent 3d9fc59 commit a03d2f2

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"prebuild": "rimraf dist",
3030
"build": "tsc --outDir ./dist/_esm2015/ && tsc --outDir ./dist/_esm5/ --target es5 && tsc --outDir ./dist/ --module commonjs",
3131
"build:docs": "typedoc --out dist/docs --target es6 --theme minimal",
32-
"check-snippets": "npx tsc --outDir ./dist-snippets --project ./tsconfig.snippets.json && rimraf dist-snippets",
32+
"check-snippets": "npx tsc --outDir ./dist-snippets --project ./snippets/tsconfig.json && rimraf dist-snippets",
3333
"commity": "commit",
3434
"deploy-docs": "ts-node tools/gh-pages-publish",
3535
"lint": "tslint --project tsconfig.json -t codeFrame --fix",

tsconfig.snippets.json renamed to snippets/tsconfig.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,11 @@
2020
],
2121
"paths": {
2222
"@shiftcoders/*": [
23-
"src/*"
23+
"../src/*"
2424
]
2525
}
2626
},
2727
"include": [
28-
"snippets/**/*.ts"
29-
],
30-
"exclude": [
31-
"test/**/*",
32-
"src/**/*"
28+
"./**/*.ts"
3329
]
3430
}

0 commit comments

Comments
 (0)