mirror of
https://github.com/colanode/colanode.git
synced 2025-12-14 18:57:46 +01:00
35 lines
913 B
JSON
35 lines
913 B
JSON
{
|
|
"$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"]
|
|
}
|