Files
guz.one/jsconfig.json

25 lines
466 B
JSON
Raw Permalink Normal View History

2024-05-23 16:30:37 -03:00
{
"$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/**"
]
}