30 lines
726 B
JSON
30 lines
726 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"types": ["vitest/globals"],
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@omaresquivel/design-system": ["./src/index.ts"],
|
|
"@omaresquivel/design-system/style.css": ["./src/styles/index.css"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.vue",
|
|
"playground/**/*.ts",
|
|
"playground/**/*.vue",
|
|
"tests/**/*.ts"
|
|
]
|
|
}
|