Files
playwriter/website/tsconfig.json
Tommy D. Rossi 3decc28242 website
2025-12-30 14:25:19 +01:00

29 lines
758 B
JSON

{
"include": ["src"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"types": ["@react-router/node", "vite/client", "@types/node"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "ES2022",
"strict": true,
"allowJs": true,
"skipLibCheck": true,
"allowArbitraryExtensions": true,
"allowImportingTsExtensions": true,
"noImplicitAny": false,
"useUnknownInCatchVariables": false,
"forceConsistentCasingInFileNames": true,
"rootDirs": [".", "./.react-router/types"],
"baseUrl": ".",
"paths": {
"website/*": ["./*"]
},
"noEmit": true
}
}