Initial commit
This commit is contained in:
44
tsconfig.json
Normal file
44
tsconfig.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"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"],
|
||||
}
|
||||
Reference in New Issue
Block a user