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