20 lines
458 B
JSON
20 lines
458 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "NodeNext",
|
|
"verbatimModuleSyntax": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["./src"],
|
|
"exclude": ["**/*.test.ts", "**/*.spec.ts"]
|
|
}
|