parent
6dd040617f
commit
1b599950c8
@ -1,7 +1,8 @@ |
|||||||
{ |
{ |
||||||
"extends": "./tsconfig.json", |
"extends": "./tsconfig.json", |
||||||
"compilerOptions": { |
"compilerOptions": { |
||||||
"outDir": "build-e2e" |
"outDir": "build-e2e", |
||||||
|
"target": "ES6" |
||||||
}, |
}, |
||||||
"include": ["test/**/*.ts", "test/**/*.js", "../remix-ide-e2e/src/commands"] |
"include": ["test/**/*.ts", "test/**/*.js", "../remix-ide-e2e/src/commands"] |
||||||
} |
} |
@ -1,24 +1,35 @@ |
|||||||
{ |
{ |
||||||
"compilerOptions": { |
"compilerOptions": { |
||||||
"jsx": "react-jsx", |
"target": "ES2018", |
||||||
"target": "ES6", |
|
||||||
"allowJs": true, |
"allowJs": true, |
||||||
"module": "commonjs", |
"module": "CommonJS", |
||||||
"skipLibCheck": true, |
"skipLibCheck": true, |
||||||
"esModuleInterop": true, |
"esModuleInterop": true, |
||||||
"noImplicitAny": false, |
"noImplicitAny": false, |
||||||
"sourceMap": true, |
"sourceMap": true, |
||||||
"baseUrl": ".", |
"baseUrl": ".", |
||||||
"outDir": "build", |
"outDir": "./build", |
||||||
"moduleResolution": "node", |
"moduleResolution": "node", |
||||||
"resolveJsonModule": true, |
"resolveJsonModule": true, |
||||||
"paths": { |
"paths": { |
||||||
"*": ["node_modules/*"], |
"*": [ |
||||||
"@remix/remix-ai-core": [ |
"node_modules/*" |
||||||
"../../libs/remix-ai-core/src" |
], |
||||||
] |
"@remix-api": [ |
||||||
|
"../../libs/remix-api/src/lib/types/git.ts" |
||||||
|
], |
||||||
|
"@remix-git": [ |
||||||
|
"../../libs/remix-git/" |
||||||
|
], |
||||||
}, |
}, |
||||||
"typeRoots": ["src/**/*.d.ts", "node_modules/@types", "test/**/*.d.ts", "../remix-ide-e2e/src/**/*.d.ts"] |
"typeRoots": [ |
||||||
|
"src/**/*.d.ts", |
||||||
|
"node_modules/@types", |
||||||
|
"test/**/*.d.ts", |
||||||
|
"../remix-ide-e2e/src/**/*.d.ts" |
||||||
|
] |
||||||
}, |
}, |
||||||
"include": ["src/**/*"] |
"include": [ |
||||||
|
"src/**/*", |
||||||
|
] |
||||||
} |
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue