shellphone.app/tsconfig.json

25 lines
555 B
JSON
Raw Normal View History

2021-07-18 15:32:45 +00:00
{
2022-05-14 10:22:06 +00:00
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["./cypress/**/*.ts"],
2021-07-18 15:32:45 +00:00
"compilerOptions": {
2022-05-14 10:22:06 +00:00
"types": ["vitest/globals"],
"lib": ["DOM", "DOM.Iterable", "ES2021"],
"module": "commonjs",
"target": "ES2021",
"isolatedModules": true,
2021-07-18 15:32:45 +00:00
"esModuleInterop": true,
2022-05-14 10:22:06 +00:00
"jsx": "react-jsx",
2021-07-18 15:32:45 +00:00
"moduleResolution": "node",
"resolveJsonModule": true,
2022-05-14 10:22:06 +00:00
"strict": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
},
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true
}
2021-07-18 15:32:45 +00:00
}