mirror of
https://github.com/GeorgeSG/v0.gar.dev
synced 2025-12-28 21:30:29 +00:00
23 lines
520 B
JSON
23 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"lib": ["esnext", "esnext.asynciterable", "dom"],
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
},
|
|
"types": ["@types/node", "@nuxt/types"]
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|