32 lines
745 B
JSON
32 lines
745 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
"compilerOptions": {
|
|
"lib": ["es2022"],
|
|
"module": "nodenext",
|
|
"target": "es2022",
|
|
"moduleResolution": "nodenext",
|
|
|
|
"sourceMap": true,
|
|
"rootDir": "src/ts",
|
|
"outDir": "dist",
|
|
"removeComments": true,
|
|
"newLine": "lf",
|
|
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowUnusedLabels": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"checkJs": true
|
|
}
|
|
}
|