mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 04:07:36 +00:00
48a46d0217
Let CI handle linting
19 lines
466 B
JSON
19 lines
466 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"module": "commonjs",
|
|
"lib": ["dom", "es2019", "es2020.bigint", "es2020.string", "es2020.symbol.wellknown"],
|
|
"allowJs": true,
|
|
"outDir": "build",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|