vite-garden
Version:
Vite Garden -- a part of the threed.ai family of JavaScript-friendly food-growing libraries
40 lines (39 loc) • 1.09 kB
JSON
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "es2016",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"incremental": false,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": [
"cypress",
"vite/client",
"vite-plugin-pages/client",
"vite-plugin-vue-layouts/client"
// from "vue-tailwind-ethereum-template"
// "webpack-env",
// "mocha",
// "chai"
],
"paths": {
"~/*": ["src/*"]
},
"sourceMap": true,
"allowJs": true,
"useDefineForClassFields": true,
"jsx": "preserve",
// for web3
"allowSyntheticDefaultImports": true
//"esModuleInterop": true
},
"exclude": ["dist", "node_modules"],
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "src/components/App.vue","tests/**/*.ts", "tests/**/*.tsx"]
}