20 lines
668 B
JSON
20 lines
668 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"strict": true,
|
||
|
|
"jsx": "preserve",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||
|
|
"types": ["vite/client", "vitest/globals"]
|
||
|
|
},
|
||
|
|
"include": ["resources/js/**/*.ts", "resources/js/**/*.tsx", "resources/js/**/*.vue", "tests/Frontend/**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "public/build", "vendor"]
|
||
|
|
}
|