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
LoredMarkdown/jsconfig.json
2023-11-28 17:20:40 -03:00

29 lines
541 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": [
"./**/*.test.js",
"./src/**/*.js",
"./api/**/*.js",
"./packages/*/src/**/*.js",
"./packages/*/scripts/**/*.js",
"./commitlint.config.cjs",
"./eslint.config.js"
],
"exclude": [
"./node_modules/**",
".dist"
]
}