// javascript for production // { // "compilerOptions": { // "paths": { // "@/*": ["./src/*"], // "^/*": ["./public/*"] // } // } // } // typescript for local development { "compilerOptions": { "jsx": "react-jsx", "noUnusedLocals": true, "noImplicitAny": false, "checkJs": true, "allowJs": true, "strict": true, "baseUrl": ".", "paths": { "@/*": ["./src/*"], "^/*": ["./public/*"] } }, "exclude": ["node_modules"] }