File tree 13 files changed +34
-25
lines changed
13 files changed +34
-25
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import * as vscode from 'vscode'
2
2
import { join } from 'path'
3
3
import { setStorage } from '../storage'
4
4
import ReactWebView from '../ReactWebView'
5
- import * as CR from '../../ typings'
5
+ import * as CR from 'typings'
6
6
7
7
const COMMANDS = {
8
8
START : 'coderoad.start' ,
Original file line number Diff line number Diff line change 1
1
import * as vscode from 'vscode'
2
- import * as CR from '../ typings'
2
+ import * as CR from 'typings'
3
3
import { createCommands } from './commands'
4
4
5
5
interface Props {
Original file line number Diff line number Diff line change 1
1
// import panel from '../views/Panel'
2
- import * as CR from '../ typings'
2
+ import * as CR from 'typings'
3
3
4
4
export const onSend = ( action : CR . Action ) => {
5
5
// if (!panel || !panel.currentPanel) {
Original file line number Diff line number Diff line change 22
22
"experimentalDecorators" : true ,
23
23
"emitDecoratorMetadata" : true ,
24
24
"paths" : {
25
- "typings" : [" ./typings/index.d.ts" ],
25
+ "typings" : [" .. /typings/index.d.ts" ],
26
26
},
27
27
},
28
28
"exclude" : [
File renamed without changes.
Original file line number Diff line number Diff line change 1
- import { onReceive } from "state/message" ;
2
-
3
1
export interface TutorialLevel {
4
2
stageList : string [ ]
5
3
content : {
Original file line number Diff line number Diff line change 1
1
import * as React from 'react'
2
- import CR from '../../../../src/ typings'
2
+ import CR from 'typings'
3
3
4
4
import ContinueItem from './ContinueItem'
5
5
Original file line number Diff line number Diff line change 1
1
import * as React from 'react'
2
2
import { Button , Card } from '@alifd/next'
3
- import CR from '../../../../src/ typings'
3
+ import CR from 'typings'
4
4
5
5
const styles = {
6
6
card : {
Original file line number Diff line number Diff line change 1
1
import * as React from 'react'
2
2
import { Button , Card } from '@alifd/next'
3
- import CR from '../../../../src/ typings'
3
+ import CR from 'typings'
4
4
5
5
import Step from '../Step'
6
6
Original file line number Diff line number Diff line change 1
1
import * as React from 'react'
2
2
import { Checkbox } from '@alifd/next'
3
3
// import CC from '../../typings/client'
4
- import CR from '../../../../src/ typings'
4
+ import CR from 'typings'
5
5
6
6
const styles = {
7
7
card : {
Original file line number Diff line number Diff line change 1
1
import * as React from 'react'
2
2
import { Button , Card } from '@alifd/next'
3
- import CR from '../../../../src/ typings'
3
+ import CR from 'typings'
4
4
5
5
const styles = {
6
6
card : {
Original file line number Diff line number Diff line change 1
1
{
2
+ "extends" : " ./tsconfig.paths.json" ,
2
3
"compilerOptions" : {
3
4
"target" : " es5" ,
4
5
"lib" : [
5
6
" dom" ,
7
+ " dom.iterable" ,
6
8
" esnext"
7
9
],
8
10
"allowJs" : true ,
16
18
"resolveJsonModule" : true ,
17
19
"isolatedModules" : true ,
18
20
"noEmit" : true ,
19
- "jsx" : " preserve" ,
20
- "sourceMap" : true ,
21
- "rootDirs" : [" src" , " stories" ],
22
- "baseUrl" : " src" ,
23
- "outDir" : " build"
21
+ "jsx" : " preserve"
24
22
},
25
23
"include" : [
26
- " src" ,
27
- " ../src/typings"
28
- ],
29
- "exclude" : [
30
- " node_modules" ,
31
- " build" ,
32
- " scripts" ,
33
- " jest" ,
34
- " public"
24
+ " src"
35
25
]
36
26
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "baseUrl" : " src" ,
4
+ "rootDirs" : [
5
+ " src" ,
6
+ " stories"
7
+ ],
8
+ "paths" : {
9
+ "typings" : [
10
+ " ../../typings/index.d.ts"
11
+ ],
12
+ }
13
+ },
14
+ "exclude" : [
15
+ " node_modules" ,
16
+ " build" ,
17
+ " scripts" ,
18
+ " jest" ,
19
+ " public"
20
+ ]
21
+ }
You can’t perform that action at this time.
0 commit comments