This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ToToday.app/tsconfig.json
Guz a59f1d375d Setup completed.
Completed the main setup of the development environment of nuxt.js and created a simple boilerplate/temporary start page with theme functionality.
2022-01-17 18:54:03 -03:00

22 lines
491 B
JSON

{
"compilerOptions": {
"target": "ES2018",
"module": "ESNext",
"moduleResolution": "Node",
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"@/*": ["./*"]
},
"types": ["@nuxt/types", "@types/node"]
},
"exclude": ["node_modules", ".nuxt", "dist"]
}