mirror of
https://github.com/Instadapp/vue-web3.git
synced 2024-07-29 21:48:25 +00:00
32 lines
699 B
JSON
32 lines
699 B
JSON
{
|
|
"include": ["scripts/watch.ts", "src/**/*", "tests/**/*"],
|
|
"exclude": ["dist", "node_modules"],
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"sourceMap": false,
|
|
"noEmit": true,
|
|
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"isolatedModules": false,
|
|
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": false,
|
|
|
|
"lib": ["esnext"],
|
|
"types": ["node", "jest"]
|
|
}
|
|
}
|