This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
packwatch/tsconfig.json

23 lines
534 B
JSON
Raw Normal View History

{
2023-03-22 03:53:06 +00:00
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"allowJs": false,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./",
"removeComments": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
2023-03-22 03:53:06 +00:00
"include": ["src", ".eslintrc.js"],
"exclude": [
"dist/**/*",
"tests/**/*"
]
}