Skip to content

Commit fe13cde

Browse files
iBatAlexander Bulychev
andauthored
CI: make generator buildable locally (#744)
Co-authored-by: Alexander Bulychev <[email protected]>
1 parent 51340f9 commit fe13cde

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

packages/devextreme-vue-generator/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"scripts": {
1616
"clean": "del-cli ./dist",
1717
"build": "npm run clean && tsc",
18+
"build:local": "npm run clean && tsc --project tsconfig.local.json",
1819
"pack": "npm run build && npm pack",
1920
"postpack": "cpy './*.tgz' dist && del-cli './*.tgz'",
2021
"test": "jest"
@@ -34,6 +35,7 @@
3435
"@types/jest": "^26.0.24",
3536
"cpy-cli": "^4.0.0",
3637
"del-cli": "^3.0.1",
38+
"devextreme-internal-tools": "10.0.0-beta.17",
3739
"jest": "^26.6.3",
3840
"ts-jest": "^26.5.6",
3941
"typescript": "^4.7.4"
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"compilerOptions": {
3+
"outDir": "./dist",
4+
"baseUrl": "./packages",
5+
"paths": {
6+
"devextreme-vue-generator": [
7+
"devextreme-vue-generator/src"
8+
],
9+
"devextreme-vue": [
10+
"devextreme-vue/src"
11+
],
12+
"devextreme-vue/*": [
13+
"devextreme-vue/src/*"
14+
],
15+
"devextreme-vue2-strategy": [
16+
"vue2-strategy/src/core"
17+
]
18+
},
19+
"esModuleInterop": true,
20+
"allowSyntheticDefaultImports": true,
21+
"target": "es5",
22+
"module": "commonjs",
23+
"noEmitOnError": true,
24+
"declaration": true,
25+
"experimentalDecorators": true,
26+
"forceConsistentCasingInFileNames": true,
27+
"noFallthroughCasesInSwitch": true,
28+
"noImplicitAny": false,
29+
"noImplicitReturns": true,
30+
"noImplicitThis": true,
31+
"noUnusedLocals": true,
32+
"noUnusedParameters": true,
33+
"strictNullChecks": true,
34+
"lib": [
35+
"esnext",
36+
"dom"
37+
]
38+
},
39+
"include": [
40+
"src/**/*"
41+
],
42+
"exclude": [
43+
"src/**/*.test.ts",
44+
"node_modules",
45+
"dist"
46+
]
47+
}

0 commit comments

Comments
 (0)