45 lines
867 B
JSON
45 lines
867 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"composite": true,
|
|
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"tsBuildInfoFile": ".tsbuildinfo",
|
|
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"moduleDetection": "force",
|
|
|
|
"types": ["node"],
|
|
|
|
"target": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"jsx": "react-jsx",
|
|
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"removeComments": true,
|
|
"newLine": "lf",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"verbatimModuleSyntax": true,
|
|
|
|
"noErrorTruncation": true,
|
|
"skipLibCheck": true,
|
|
|
|
"plugins": [
|
|
{ "name": "@effect/language-service" },
|
|
],
|
|
},
|
|
"include": ["./src"],
|
|
}
|