mirror of
https://github.com/Lissy93/personal-security-checklist.git
synced 2024-10-01 01:35:37 -04:00
27 lines
675 B
JSON
27 lines
675 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"target": "ES2017",
|
|
"module": "ES2022",
|
|
"lib": ["es2022", "DOM", "WebWorker", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@builder.io/qwik",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"outDir": "tmp",
|
|
"noEmit": true,
|
|
"types": ["node", "vite/client"],
|
|
"paths": {
|
|
"~/*": ["./src/*"],
|
|
},
|
|
},
|
|
"files": ["./.eslintrc.cjs"],
|
|
"include": ["src", "./*.d.ts", "./*.config.ts"],
|
|
}
|