File tree Expand file tree Collapse file tree 3 files changed +32
-27
lines changed Expand file tree Collapse file tree 3 files changed +32
-27
lines changed Original file line number Diff line number Diff line change 8
8
},
9
9
"scripts" : {
10
10
"build" : " npm run lint && npm run compile" ,
11
- "compile" : " tsc" ,
11
+ "compile" : " tsc -p ./tsconfig.build.json " ,
12
12
"lint" : " eslint --ext .ts --ext .tsx src"
13
13
},
14
14
"repository" : {
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " @codingame/tsconfig" ,
3
+ "compilerOptions" : {
4
+ "outDir" : " dist/" ,
5
+ "rootDir" : " src/" ,
6
+ "declaration" : true ,
7
+ "skipLibCheck" : true ,
8
+ "baseUrl" : " ./src" ,
9
+ "jsx" : " react" ,
10
+ "lib" : [
11
+ " dom" ,
12
+ " dom.iterable" ,
13
+ " esnext"
14
+ ],
15
+ "module" : " esnext" ,
16
+ "paths" : {
17
+ "app/*" : [
18
+ " *"
19
+ ]
20
+ },
21
+ "sourceMap" : true ,
22
+ "target" : " ES2022"
23
+ },
24
+ "include" : [" src" ],
25
+ "exclude" : [
26
+ " dist" ,
27
+ " node_modules"
28
+ ]
29
+ }
Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : " @codingame/tsconfig" ,
3
- "compilerOptions" : {
4
- "outDir" : " dist/" ,
5
- "declaration" : true ,
6
- "skipLibCheck" : true ,
7
- "baseUrl" : " ./src" ,
8
- "jsx" : " react" ,
9
- "lib" : [
10
- " dom" ,
11
- " dom.iterable" ,
12
- " esnext"
13
- ],
14
- "module" : " esnext" ,
15
- "paths" : {
16
- "app/*" : [
17
- " *"
18
- ]
19
- },
20
- "sourceMap" : true ,
21
- "target" : " ES2022"
22
- },
23
- "include" : [" src" , " .eslintrc.cjs" ],
24
- "exclude" : [
25
- " dist" ,
26
- " node_modules"
27
- ]
2
+ "extends" : " ./tsconfig.build.json" ,
3
+ "include" : [" src" , " .eslintrc.cjs" ]
28
4
}
You can’t perform that action at this time.
0 commit comments