18 lines
475 B
JSON
18 lines
475 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"target": "ES2019",
|
|
"lib": ["ES2019"],
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|