-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: unify ts across monorepo on v5
As a part of this: - ensure ts related deps are unified across monorepo too - add docker compose file to be able to verify builds and their validity - add code style deps to every app/package to ensure their independence closes #153
- Loading branch information
1 parent
e51169d
commit f23e3b8
Showing
43 changed files
with
3,740 additions
and
8,145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,15 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "Node16", | ||
"baseUrl": ".", | ||
"noImplicitAny": true, | ||
"noEmitOnError": false, | ||
"removeComments": false, | ||
"sourceMap": true, | ||
"downlevelIteration": true, | ||
"allowJs": true, | ||
"allowSyntheticDefaultImports": true, | ||
"experimentalDecorators": true, | ||
"emitDecoratorMetadata": true, | ||
"esModuleInterop": true, | ||
"moduleResolution": "Node16", | ||
"resolveJsonModule": true, | ||
"skipLibCheck": true, | ||
"target": "ES6", | ||
"baseUrl": "./src", | ||
"paths": { | ||
"@src/*": ["*"], | ||
"@test/*": ["../test/*"] | ||
"@src/*": [ | ||
"./src/*" | ||
], | ||
"@test/*": [ | ||
"./test/*" | ||
] | ||
} | ||
} | ||
}, | ||
"extends": "@akashnetwork/dev-config/tsconfig.base-node.json" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
{ | ||
"exclude": [ | ||
"node_modules", | ||
"dist", | ||
"**/*spec.ts" | ||
], | ||
"extends": "./tsconfig.build.json", | ||
"include": ["src/**/*"], | ||
"exclude": ["node_modules", "dist", "**/*spec.ts"], | ||
"compileOnSave": false | ||
"include": [ | ||
"src/**/*" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"compileOnSave": false, | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"moduleResolution": "Bundler", | ||
"paths": { | ||
"@src/*": [ | ||
"./src/*" | ||
] | ||
}, | ||
"plugins": [ | ||
{ | ||
"name": "next" | ||
} | ||
], | ||
"strictNullChecks": true | ||
}, | ||
"extends": "@akashnetwork/dev-config/tsconfig.base-next.json" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,12 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": ["es6", "dom", "dom.iterable", "esnext"], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"strict": false, | ||
"forceConsistentCasingInFileNames": true, | ||
"noEmit": true, | ||
"experimentalDecorators": true, | ||
"emitDecoratorMetadata": true, | ||
"esModuleInterop": true, | ||
"module": "esnext", | ||
"moduleResolution": "Bundler", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"jsx": "preserve", | ||
"incremental": true, | ||
"baseUrl": "./src", | ||
"paths": { | ||
"@src/*": ["*"] | ||
}, | ||
"plugins": [ | ||
{ | ||
"name": "next" | ||
} | ||
], | ||
"strictNullChecks": true | ||
}, | ||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], | ||
"exclude": ["node_modules"], | ||
"compileOnSave": false | ||
"exclude": [ | ||
"node_modules" | ||
], | ||
"extends": "./tsconfig.build.json", | ||
"include": [ | ||
"next-env.d.ts", | ||
"**/*.ts", | ||
"**/*.tsx", | ||
".next/types/**/*.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"noImplicitAny": false, | ||
"paths": { | ||
"@src/*": [ | ||
"./src/*" | ||
] | ||
} | ||
}, | ||
"exclude": [ | ||
"node_modules", | ||
"dist" | ||
], | ||
"extends": "@akashnetwork/dev-config/tsconfig.base-node.json", | ||
"include": [ | ||
"src/**/*" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,11 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "Node16", | ||
"noImplicitAny": false, | ||
"noEmitOnError": false, | ||
"removeComments": false, | ||
"sourceMap": true, | ||
"downlevelIteration": true, | ||
"allowJs": true, | ||
"allowSyntheticDefaultImports": true, | ||
"experimentalDecorators": true, | ||
"emitDecoratorMetadata": true, | ||
"esModuleInterop": true, | ||
"moduleResolution": "Node16", | ||
"resolveJsonModule": true, | ||
"skipLibCheck": true, | ||
"target": "ES6", | ||
"baseUrl": "./src", | ||
"paths": { | ||
"@src/*": ["*"] | ||
} | ||
}, | ||
"include": ["src/**/*"], | ||
"exclude": ["node_modules", "dist"], | ||
"compileOnSave": false | ||
"compileOnSave": false, | ||
"exclude": [ | ||
"node_modules", | ||
"dist" | ||
], | ||
"extends": "./tsconfig.build.json", | ||
"include": [ | ||
"src/**/*" | ||
] | ||
} |
Oops, something went wrong.