2023-02-28 08:29:30 +00:00
|
|
|
{
|
2023-10-02 10:46:09 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": false,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": false,
|
|
|
|
"jsx": "preserve",
|
2024-06-11 22:25:57 +00:00
|
|
|
"incremental": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@primevue/themes/*": ["./src/*"]
|
|
|
|
}
|
2023-10-02 10:46:09 +00:00
|
|
|
},
|
2024-06-11 12:21:12 +00:00
|
|
|
"include": ["**/*.ts", "src/*"],
|
2023-10-02 10:46:09 +00:00
|
|
|
"exclude": ["node_modules", "dist"]
|
2023-02-28 08:29:30 +00:00
|
|
|
}
|