This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MarkNow/packages/banners/jsconfig.json
Guz013 807fdb9c23 chore(banners): 🔧 create @maknow/banners package
Created the boilerplate/config files for the @marknow/banners package
2023-06-22 15:09:54 -03:00

18 lines
374 B
JSON

{
"compilerOptions": {
"checkJs": true,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"module": "ES2022",
"target": "ES2022",
"alwaysStrict": true
},
"include": ["./src/**/*"],
"exclude": ["./node_modules/**", "./dist/**"]
}