Files
guz.one/jsconfig.json
Gustavo "Guz" L. de Mello 7f0276b773 feat: add unocss
2024-05-23 16:30:37 -03:00

25 lines
466 B
JSON

{
"$schema": "https://json.schemastore.org/jsconfig",
"compilerOptions": {
"checkJs": true,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"module": "ESNext",
"target": "ESNext",
"alwaysStrict": true,
"outDir": "./dist"
},
"include": [
"./uno.config.js"
],
"exclude": [
"./node_modules/**",
"./dist/**"
]
}