mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 21:58:01 +00:00
e07d0f0cb7
- Move npm package from paritytech/js-revive - Rename package to `@parity/resolc`
28 lines
742 B
JSON
28 lines
742 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"types": ["node"],
|
|
"typeRoots": ["../../node_modules/@types", "./src"],
|
|
"paths": {
|
|
"#src/*": ["./src/*"]
|
|
},
|
|
"plugins": []
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|