parent
6dd040617f
commit
1b599950c8
@ -1,7 +1,8 @@ |
||||
{ |
||||
"extends": "./tsconfig.json", |
||||
"compilerOptions": { |
||||
"outDir": "build-e2e" |
||||
"outDir": "build-e2e", |
||||
"target": "ES6" |
||||
}, |
||||
"include": ["test/**/*.ts", "test/**/*.js", "../remix-ide-e2e/src/commands"] |
||||
} |
@ -1,24 +1,35 @@ |
||||
{ |
||||
"compilerOptions": { |
||||
"jsx": "react-jsx", |
||||
"target": "ES6", |
||||
"target": "ES2018", |
||||
"allowJs": true, |
||||
"module": "commonjs", |
||||
"module": "CommonJS", |
||||
"skipLibCheck": true, |
||||
"esModuleInterop": true, |
||||
"noImplicitAny": false, |
||||
"sourceMap": true, |
||||
"baseUrl": ".", |
||||
"outDir": "build", |
||||
"outDir": "./build", |
||||
"moduleResolution": "node", |
||||
"resolveJsonModule": true, |
||||
"paths": { |
||||
"*": ["node_modules/*"], |
||||
"@remix/remix-ai-core": [ |
||||
"../../libs/remix-ai-core/src" |
||||
] |
||||
"*": [ |
||||
"node_modules/*" |
||||
], |
||||
"@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