fixed reference
This commit is contained in:
parent
c0db4dc2c9
commit
0576193b76
@ -43,6 +43,7 @@ jobs:
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: ./frontend
|
||||
file: ./frontend/Dockerfile.dev
|
||||
push: true
|
||||
tags: registry.liquidrinu.com/fusero-frontend:latest
|
||||
cache-from: type=registry,ref=registry.liquidrinu.com/fusero-frontend:buildcache
|
||||
|
@ -1,10 +1,14 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ESNext",
|
||||
"lib": ["DOM", "DOM.Iterable", "ESNext", "ES2015"],
|
||||
"lib": [
|
||||
"DOM",
|
||||
"DOM.Iterable",
|
||||
"ESNext",
|
||||
"ES2015"
|
||||
],
|
||||
"module": "ESNext",
|
||||
"skipLibCheck": true,
|
||||
|
||||
/* Bundler mode */
|
||||
"moduleResolution": "bundler",
|
||||
"allowImportingTsExtensions": true,
|
||||
@ -12,7 +16,6 @@
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
"jsx": "react-jsx",
|
||||
|
||||
/* Linting */
|
||||
"strict": false,
|
||||
"noUnusedLocals": false,
|
||||
@ -22,7 +25,6 @@
|
||||
"noImplicitReturns": false,
|
||||
"noImplicitThis": false,
|
||||
"alwaysStrict": false
|
||||
|
||||
/* Additional Options */
|
||||
// "forceConsistentCasingInFileNames": true,
|
||||
// "strictNullChecks": true,
|
||||
@ -32,6 +34,12 @@
|
||||
// "incremental": true,
|
||||
// "esModuleInterop": true
|
||||
},
|
||||
"include": ["src"],
|
||||
"references": [{ "path": "./tsconfig.node.json" }]
|
||||
}
|
||||
"include": [
|
||||
"src"
|
||||
],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.node.json"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user