26 lines
516 B
JSON
26 lines
516 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"target": "ESNext",
|
|
"declaration": true,
|
|
"strict": false,
|
|
"noUnusedLocals": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"lib": ["ES6"]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"src/**/*.test.ts"
|
|
],
|
|
"ts-node": {
|
|
"esm": true
|
|
}
|
|
} |