26 lines
455 B
JSON
26 lines
455 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/**/*",
|
|
"./test/**/*.js",
|
|
"./eslint.config.js",
|
|
"./commitlint.config.cjs"
|
|
],
|
|
"exclude": [
|
|
"./node_modules/**",
|
|
".dist"
|
|
]
|
|
}
|