first
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"name": "config",
|
||||
"main": "./src/index.ts",
|
||||
"type": "module",
|
||||
"version": "1.0.0",
|
||||
"license": "MIT"
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
export const config = {
|
||||
AUTH_URL: '/api/auth',
|
||||
API_URL: '/api',
|
||||
GAN_URL: '/api/gan',
|
||||
STATISTICS_URL: '/api/statistics',
|
||||
FILES_URL: '/api/files',
|
||||
WS_URL: '/api/ws',
|
||||
BILLING_URL: '/api/billing',
|
||||
EXPERIMENTS_URL: '/api/experiments',
|
||||
TRACKING_URL: '/api/tracking',
|
||||
BUILD_ENV: 'development',
|
||||
ENV: 'development',
|
||||
GOOGLE_AUTH_CLIENT_ID: '306475690020-b6j9ml8puphfi8261g7jv3hgsc1vc3l7.apps.googleusercontent.com',
|
||||
};
|
||||
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/tsconfig",
|
||||
"display": "Strictest",
|
||||
"compilerOptions": {
|
||||
"strict": true,
|
||||
"strictNullChecks": true,
|
||||
"allowUnusedLabels": false,
|
||||
"allowUnreachableCode": false,
|
||||
"exactOptionalPropertyTypes": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noImplicitOverride": true,
|
||||
"noImplicitReturns": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
|
||||
"isolatedModules": true,
|
||||
|
||||
"allowJs": true,
|
||||
"checkJs": true,
|
||||
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
|
||||
"lib": ["es2023"],
|
||||
"module": "esnext",
|
||||
"target": "es2022",
|
||||
"moduleResolution": "bundler",
|
||||
"moduleDetection": "force",
|
||||
"resolveJsonModule": true,
|
||||
"noEmit": true,
|
||||
"incremental": true,
|
||||
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"sourceMap": true,
|
||||
"pretty": true,
|
||||
"preserveWatchOutput": true,
|
||||
|
||||
"tsBuildInfoFile": "${configDir}/tsconfig.tsbuildinfo",
|
||||
"baseUrl": "${configDir}",
|
||||
"paths": {
|
||||
"@/*": ["${configDir}/src/*"]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"${configDir}/**/*.ts",
|
||||
"${configDir}/**/*.tsx",
|
||||
"${configDir}/**/*.cts",
|
||||
"${configDir}/**/*.ctsx",
|
||||
"${configDir}/**/*.mts",
|
||||
"${configDir}/**/*.mtsx",
|
||||
"${configDir}/**/*.js",
|
||||
"${configDir}/**/*.jsx",
|
||||
"${configDir}/**/*.cjs",
|
||||
"${configDir}/**/*.cjsx",
|
||||
"${configDir}/**/*.mjs",
|
||||
"${configDir}/**/*.mjsx"
|
||||
],
|
||||
"exclude": ["${configDir}/node_modules", "${configDir}/dist"]
|
||||
}
|
||||
Reference in New Issue
Block a user