This repository has been archived on 2024-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Maneger/tsconfig.json
Matheus Sampaio Queiroga 25a7dff505 move platforms files to src and remove oldest files
* Some files being kept from version 1.x to 2.5.x have been removed

* The platforms are now fully independent but it will be necessary to maintain a standard between them I am looking for a better way to maintain this standard

* We want to have several platforms integrated into the core of the Bds Manager Project, we are accepting commits and pull requests

By Matheus Sampaio Queiroga (@Sirherobrine23) <srherobrine20@gmail.com>
2022-07-03 23:19:21 +00:00

26 lines
531 B
JSON

{
"include": ["src/**/*"],
"exclude": [
"node_modules/",
"test/"
],
"compilerOptions": {
"esModuleInterop": true,
"moduleResolution": "node",
"module": "commonjs",
"outDir": "./dist/cjs",
"declaration": true,
"declarationDir": "./dist/dts",
"strict": false,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"allowJs": true,
"target": "ES6",
"paths": {
"@/*": ["./node_modules/@*"]
}
}
}