Initial WallMuse project
This commit is contained in:
43
tsconfig.base.json
Executable file
43
tsconfig.base.json
Executable file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2022",
|
||||
"lib": [
|
||||
"ES2022",
|
||||
"DOM",
|
||||
"DOM.Iterable"
|
||||
],
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Bundler",
|
||||
"strict": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"exactOptionalPropertyTypes": true,
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"skipLibCheck": true,
|
||||
"resolveJsonModule": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@wallmuse/shared": [
|
||||
"packages/shared/src/index.ts"
|
||||
],
|
||||
"@wallmuse/shared/*": [
|
||||
"packages/shared/src/*"
|
||||
],
|
||||
"@wallmuse/db": [
|
||||
"packages/db/src/index.ts"
|
||||
],
|
||||
"@wallmuse/api-client": [
|
||||
"packages/api-client/src/index.ts"
|
||||
],
|
||||
"@wallmuse/ui-tokens": [
|
||||
"packages/ui-tokens/src/index.ts"
|
||||
],
|
||||
"@wallmuse/ui-tokens/*": [
|
||||
"packages/ui-tokens/src/*"
|
||||
],
|
||||
"@wallmuse/provider-adapters": [
|
||||
"packages/provider-adapters/src/index.ts"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user