mirror of
https://github.com/colanode/colanode.git
synced 2025-12-28 16:06:37 +01:00
Initiate monorepo
This commit is contained in:
34
tsconfig.base.json
Normal file
34
tsconfig.base.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/tsconfig",
|
||||
"display": "Base Configuration",
|
||||
"compilerOptions": {
|
||||
/* Base Options: */
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"target": "esnext",
|
||||
"lib": ["esnext"],
|
||||
"allowJs": true,
|
||||
"resolveJsonModule": true,
|
||||
"moduleDetection": "force",
|
||||
"isolatedModules": true,
|
||||
"verbatimModuleSyntax": false,
|
||||
|
||||
/* Strictness */
|
||||
"strict": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"noImplicitOverride": true,
|
||||
|
||||
/* Opinion */
|
||||
"incremental": true,
|
||||
"tsBuildInfoFile": "${configDir}/tsconfig.tsbuildinfo",
|
||||
"module": "preserve",
|
||||
"outDir": "${configDir}/dist",
|
||||
"baseUrl": "${configDir}",
|
||||
"rootDir": "${configDir}/src",
|
||||
"paths": {
|
||||
"~/*": ["./src/*"]
|
||||
}
|
||||
},
|
||||
"include": ["${configDir}/src", "${configDir}/src/**/*.json"],
|
||||
"exclude": ["${configDir}/node_modules", "${configDir}/dist"]
|
||||
}
|
||||
Reference in New Issue
Block a user