mirror of
https://github.com/Instadapp/vue-web3.git
synced 2024-07-29 21:48:25 +00:00
33 lines
815 B
JSON
33 lines
815 B
JSON
{
|
|
"include": ["src/global.d.ts", "src/**/*.ts", "__tests__/**/*.ts"],
|
|
"exclude": ["dist", "node_modules", "demo"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"sourceMap": false,
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"target": "es5",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"isolatedModules": false,
|
|
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": false,
|
|
"jsx": "preserve",
|
|
"lib": ["es5", "dom"],
|
|
"types": ["node", "jest", "howler"]
|
|
}
|
|
} |