This repository has been archived on 2025-02-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
node-apt/tsconfig.json
2022-12-14 12:57:47 -03:00

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
}
}